AndroidManifest.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. package="com.yuanren.dianjing">
  4. <!-- io.flutter.app.FlutterApplication is an android.app.Application that
  5. calls FlutterMain.startInitialization(this); in its onCreate method.
  6. In most cases you can leave this as-is, but you if you want to provide
  7. additional functionality it is fine to subclass or reimplement
  8. FlutterApplication and put your custom class here. -->
  9. <application
  10. android:name="com.izouma.screen_stream_plugin.MyApplication"
  11. android:icon="@mipmap/ic_launcher"
  12. android:label="EMMC战神竞技场"
  13. android:networkSecurityConfig="@xml/network_security_config"
  14. android:usesCleartextTraffic="true"
  15. tools:ignore="GoogleAppIndexingWarning">
  16. <activity
  17. android:name="com.yalantis.ucrop.UCropActivity"
  18. android:screenOrientation="portrait"
  19. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  20. <activity
  21. android:name="com.yuanren.dianjing.MainActivity"
  22. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  23. android:hardwareAccelerated="true"
  24. android:launchMode="singleTop"
  25. android:theme="@style/LaunchTheme"
  26. android:windowSoftInputMode="adjustResize">
  27. <!-- This keeps the window background of the activity showing
  28. until Flutter renders its first frame. It can be removed if
  29. there is no splash screen (such as the default splash screen
  30. defined in @style/LaunchTheme). -->
  31. <meta-data
  32. android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
  33. android:value="true" />
  34. <intent-filter>
  35. <action android:name="android.intent.action.MAIN" />
  36. <category android:name="android.intent.category.LAUNCHER" />
  37. </intent-filter>
  38. </activity>
  39. <meta-data
  40. android:name="android.support.FILE_PROVIDER_PATHS"
  41. android:resource="@xml/file_paths" />
  42. </application>
  43. </manifest>