Flutter app for Asset Management
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

52 linhas
2.8 KiB

  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.thamringroup.assetstock">
  3. <!-- io.flutter.app.FlutterApplication is an android.app.Application that
  4. calls FlutterMain.startInitialization(this); in its onCreate method.
  5. In most cases you can leave this as-is, but you if you want to provide
  6. additional functionality it is fine to subclass or reimplement
  7. FlutterApplication and put your custom class here. -->
  8. <uses-permission android:name="android.permission.INTERNET" />
  9. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  10. <application
  11. android:name="${applicationName}"
  12. android:label="assetstock"
  13. android:usesCleartextTraffic="true"
  14. android:networkSecurityConfig="@xml/network_security_config"
  15. android:icon="@mipmap/launcher_icon">
  16. <activity
  17. android:name=".MainActivity"
  18. android:launchMode="singleTop"
  19. android:theme="@style/LaunchTheme"
  20. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  21. android:hardwareAccelerated="true"
  22. android:windowSoftInputMode="adjustResize">
  23. <!-- Specifies an Android theme to apply to this Activity as soon as
  24. the Android process has started. This theme is visible to the user
  25. while the Flutter UI initializes. After that, this theme continues
  26. to determine the Window background behind the Flutter UI. -->
  27. <meta-data
  28. android:name="io.flutter.embedding.android.NormalTheme"
  29. android:resource="@style/NormalTheme"
  30. />
  31. <!-- Displays an Android View that continues showing the launch screen
  32. Drawable until Flutter paints its first frame, then this splash
  33. screen fades out. A splash screen is useful to avoid any visual
  34. gap between the end of Android's launch screen and the painting of
  35. Flutter's first frame. -->
  36. <meta-data
  37. android:name="io.flutter.embedding.android.SplashScreenDrawable"
  38. android:resource="@drawable/launch_background"
  39. />
  40. <intent-filter>
  41. <action android:name="android.intent.action.MAIN"/>
  42. <category android:name="android.intent.category.LAUNCHER"/>
  43. </intent-filter>
  44. </activity>
  45. <!-- Don't delete the meta-data below.
  46. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
  47. <meta-data
  48. android:name="flutterEmbedding"
  49. android:value="2" />
  50. </application>
  51. </manifest>