|
1 | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
2 | | - package="com.example.untitled"> |
| 2 | + package="com.shifthackz.wooapp"> |
3 | 3 |
|
4 | 4 | <uses-permission android:name="android.permission.INTERNET" /> |
5 | 5 |
|
6 | | - <application |
7 | | - android:label="untitled" |
8 | | - android:icon="@mipmap/ic_launcher"> |
| 6 | + <application |
| 7 | + android:icon="@mipmap/ic_launcher" |
| 8 | + android:label="WooApp"> |
9 | 9 | <activity |
10 | 10 | android:name=".MainActivity" |
11 | | - android:launchMode="singleTop" |
12 | | - android:theme="@style/LaunchTheme" |
13 | 11 | android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
14 | | - android:hardwareAccelerated="true" |
15 | 12 | android:exported="true" |
| 13 | + android:hardwareAccelerated="true" |
| 14 | + android:launchMode="singleTop" |
| 15 | + android:theme="@style/LaunchTheme" |
16 | 16 | android:windowSoftInputMode="adjustResize"> |
17 | 17 | <!-- Specifies an Android theme to apply to this Activity as soon as |
18 | 18 | the Android process has started. This theme is visible to the user |
19 | 19 | while the Flutter UI initializes. After that, this theme continues |
20 | 20 | to determine the Window background behind the Flutter UI. --> |
21 | 21 | <meta-data |
22 | | - android:name="io.flutter.embedding.android.NormalTheme" |
23 | | - android:resource="@style/NormalTheme" |
24 | | - /> |
| 22 | + android:name="io.flutter.embedding.android.NormalTheme" |
| 23 | + android:resource="@style/NormalTheme" /> |
25 | 24 | <!-- Displays an Android View that continues showing the launch screen |
26 | 25 | Drawable until Flutter paints its first frame, then this splash |
27 | 26 | screen fades out. A splash screen is useful to avoid any visual |
28 | 27 | gap between the end of Android's launch screen and the painting of |
29 | 28 | Flutter's first frame. --> |
30 | 29 | <meta-data |
31 | | - android:name="io.flutter.embedding.android.SplashScreenDrawable" |
32 | | - android:resource="@drawable/launch_background" |
33 | | - /> |
| 30 | + android:name="io.flutter.embedding.android.SplashScreenDrawable" |
| 31 | + android:resource="@drawable/launch_background" /> |
34 | 32 | <intent-filter> |
35 | | - <action android:name="android.intent.action.MAIN"/> |
36 | | - <category android:name="android.intent.category.LAUNCHER"/> |
| 33 | + <action android:name="android.intent.action.MAIN" /> |
| 34 | + <category android:name="android.intent.category.LAUNCHER" /> |
37 | 35 | </intent-filter> |
38 | 36 | </activity> |
39 | 37 | <!-- Don't delete the meta-data below. |
|
42 | 40 | android:name="flutterEmbedding" |
43 | 41 | android:value="2" /> |
44 | 42 | <meta-data |
45 | | - android:name="com.google.android.geo.API_KEY" |
46 | | - android:value="AIzaSyDJdk21GvvuNT1VHQmJ2YrRDFc1Pn6D70E" /> |
| 43 | + android:name="com.google.android.geo.API_KEY" |
| 44 | + android:value="AIzaSyDJdk21GvvuNT1VHQmJ2YrRDFc1Pn6D70E" /> |
47 | 45 | </application> |
48 | 46 | </manifest> |
0 commit comments