|
| 1 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | + package="com.example.flutter_uber_location"> |
| 3 | + <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
| 4 | +<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> |
| 5 | +<uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> |
| 6 | + <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION"/> |
| 7 | + <uses-permission android:name="android.permission.INTERNET"/> |
| 8 | + <application |
| 9 | + android:label="flutter_uber_location" |
| 10 | + android:name="${applicationName}" |
| 11 | + android:icon="@mipmap/ic_launcher"> |
| 12 | + <activity |
| 13 | + android:name=".MainActivity" |
| 14 | + android:exported="true" |
| 15 | + android:launchMode="singleTop" |
| 16 | + android:theme="@style/LaunchTheme" |
| 17 | + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
| 18 | + android:hardwareAccelerated="true" |
| 19 | + android:windowSoftInputMode="adjustResize"> |
| 20 | + <!-- Specifies an Android theme to apply to this Activity as soon as |
| 21 | + the Android process has started. This theme is visible to the user |
| 22 | + while the Flutter UI initializes. After that, this theme continues |
| 23 | + to determine the Window background behind the Flutter UI. --> |
| 24 | + <meta-data |
| 25 | + android:name="io.flutter.embedding.android.NormalTheme" |
| 26 | + android:resource="@style/NormalTheme" |
| 27 | + /> |
| 28 | + <intent-filter> |
| 29 | + <action android:name="android.intent.action.MAIN"/> |
| 30 | + <category android:name="android.intent.category.LAUNCHER"/> |
| 31 | + </intent-filter> |
| 32 | + </activity> |
| 33 | + <!-- Don't delete the meta-data below. |
| 34 | + This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> |
| 35 | + <meta-data android:name="com.google.android.geo.API_KEY" |
| 36 | + android:value="YOUR_API_KEY" |
| 37 | + /> |
| 38 | + <meta-data |
| 39 | + android:name="flutterEmbedding" |
| 40 | + android:value="2" /> |
| 41 | + </application> |
| 42 | +</manifest> |
0 commit comments