AndroidManifest.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.izouma.wanna_battle">
  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. <application
  9. android:name="com.izouma.screen_stream_plugin.MyApplication"
  10. android:icon="@mipmap/ic_launcher"
  11. android:label="我要电竞"
  12. android:networkSecurityConfig="@xml/network_security_config"
  13. android:usesCleartextTraffic="true">
  14. <activity
  15. android:name="com.yalantis.ucrop.UCropActivity"
  16. android:screenOrientation="portrait"
  17. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  18. <activity
  19. android:name=".MainActivity"
  20. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  21. android:hardwareAccelerated="true"
  22. android:launchMode="singleTop"
  23. android:theme="@style/LaunchTheme"
  24. android:windowSoftInputMode="adjustResize">
  25. <!-- This keeps the window background of the activity showing
  26. until Flutter renders its first frame. It can be removed if
  27. there is no splash screen (such as the default splash screen
  28. defined in @style/LaunchTheme). -->
  29. <meta-data
  30. android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
  31. android:value="true" />
  32. <intent-filter>
  33. <action android:name="android.intent.action.MAIN" />
  34. <category android:name="android.intent.category.LAUNCHER" />
  35. </intent-filter>
  36. </activity>
  37. <meta-data
  38. android:name="android.support.FILE_PROVIDER_PATHS"
  39. android:resource="@xml/file_paths" />
  40. </application>
  41. </manifest>