AndroidManifest.xml 1.9 KB

12345678910111213141516171819202122232425262728
  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.CHANGE_WIFI_MULTICAST_STATE" />
  4. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  5. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  6. <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
  7. <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
  8. <application android:label="putra_go" android:name="${applicationName}" android:icon="@mipmap/ic_launcher">
  9. <activity android:name=".MainActivity" android:exported="true" android:launchMode="singleTop"
  10. android:theme="@style/LaunchTheme"
  11. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  12. android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize">
  13. <!-- Specifies an Android theme to apply to this Activity as soon as
  14. the Android process has started. This theme is visible to the user
  15. while the Flutter UI initializes. After that, this theme continues
  16. to determine the Window background behind the Flutter UI. -->
  17. <meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" />
  18. <intent-filter>
  19. <action android:name="android.intent.action.MAIN" />
  20. <category android:name="android.intent.category.LAUNCHER" />
  21. </intent-filter>
  22. </activity>
  23. <!-- Don't delete the meta-data below.
  24. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
  25. <meta-data android:name="flutterEmbedding" android:value="2" />
  26. </application>
  27. </manifest>