AndroidManifest.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.atmob.abroad_location">
  2. <uses-permission android:name="android.permission.INTERNET" />
  3. <application
  4. android:allowBackup="false"
  5. android:label="abroad_location"
  6. android:name="${applicationName}"
  7. android:icon="@mipmap/ic_launcher">
  8. <activity
  9. android:name=".MainActivity"
  10. android:exported="true"
  11. android:launchMode="singleTop"
  12. android:taskAffinity=""
  13. android:theme="@style/LaunchTheme"
  14. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  15. android:hardwareAccelerated="true"
  16. android:windowSoftInputMode="adjustResize">
  17. <!-- Specifies an Android theme to apply to this Activity as soon as
  18. the Android process has started. This theme is visible to the user
  19. while the Flutter UI initializes. After that, this theme continues
  20. to determine the Window background behind the Flutter UI. -->
  21. <meta-data
  22. android:name="io.flutter.embedding.android.NormalTheme"
  23. android:resource="@style/NormalTheme"
  24. />
  25. <intent-filter>
  26. <action android:name="android.intent.action.MAIN"/>
  27. <category android:name="android.intent.category.LAUNCHER"/>
  28. </intent-filter>
  29. </activity>
  30. <!-- Don't delete the meta-data below.
  31. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
  32. <meta-data
  33. android:name="flutterEmbedding"
  34. android:value="2" />
  35. </application>
  36. <!-- Required to query activities that can process text, see:
  37. https://developer.android.com/training/package-visibility and
  38. https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
  39. In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
  40. <queries>
  41. <intent>
  42. <action android:name="android.intent.action.PROCESS_TEXT"/>
  43. <data android:mimeType="text/plain"/>
  44. </intent>
  45. </queries>
  46. </manifest>