Business Login Flutter Apps
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

48 rivejä
2.5 KiB

  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.thamringroup.unitstocks">
  3. <uses-permission android:name="android.permission.INTERNET"/>
  4. <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
  5. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  6. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  7. <application
  8. android:name="${applicationName}"
  9. android:label="unitstocks"
  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. <!-- Displays an Android View that continues showing the launch screen
  28. Drawable until Flutter paints its first frame, then this splash
  29. screen fades out. A splash screen is useful to avoid any visual
  30. gap between the end of Android's launch screen and the painting of
  31. Flutter's first frame. -->
  32. <meta-data
  33. android:name="io.flutter.embedding.android.SplashScreenDrawable"
  34. android:resource="@drawable/launch_background"
  35. />
  36. <intent-filter>
  37. <action android:name="android.intent.action.MAIN"/>
  38. <category android:name="android.intent.category.LAUNCHER"/>
  39. </intent-filter>
  40. </activity>
  41. <!-- Don't delete the meta-data below.
  42. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
  43. <meta-data
  44. android:name="flutterEmbedding"
  45. android:value="2" />
  46. </application>
  47. </manifest>