From 18945ad19b0c6bc4b3cd41dc279170f87857dd49 Mon Sep 17 00:00:00 2001 From: clopezr1 Date: Thu, 6 Feb 2020 18:36:26 -0500 Subject: [PATCH 1/2] Changed the app's name displayed, IOS target 8 => 12 --- android/app/src/main/AndroidManifest.xml | 2 +- ios/Runner.xcodeproj/project.pbxproj | 3 +++ ios/Runner/Info.plist | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 0fc243a..b4d4b56 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -7,7 +7,7 @@ FlutterApplication and put your custom class here. --> CFBundleInfoDictionaryVersion 6.0 CFBundleName - capstone_hungry_hippos + UNCC Athletics CFBundlePackageType APPL CFBundleShortVersionString From dd6c1e1f40e8728c9073cdcff9dae3a6733f0726 Mon Sep 17 00:00:00 2001 From: clopezr1 Date: Fri, 7 Feb 2020 14:37:16 -0500 Subject: [PATCH 2/2] Removed the debug banner --- lib/main.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/main.dart b/lib/main.dart index 48b4830..47d6b1c 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -7,6 +7,7 @@ class App extends StatelessWidget{ @override Widget build(BuildContext context) { return MaterialApp( + debugShowCheckedModeBanner: false, title: 'UNCC Athletics', home: Home(), );