AndroidManifest.xml 2.1 KB

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