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