AndroidManifest.xml 2.0 KB

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