AndroidManifest.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.example.douyin_demo">
  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="io.flutter.app.FlutterApplication"
  10. android:label="douyin_demo"
  11. android:icon="@mipmap/ic_launcher">
  12. <activity
  13. android:name=".MainActivity"
  14. android:launchMode="singleTop"
  15. android:theme="@style/LaunchTheme"
  16. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  17. android:hardwareAccelerated="true"
  18. android:windowSoftInputMode="adjustResize">
  19. <!-- This keeps the window background of the activity showing
  20. until Flutter renders its first frame. It can be removed if
  21. there is no splash screen (such as the default splash screen
  22. defined in @style/LaunchTheme). -->
  23. <meta-data
  24. android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
  25. android:value="true" />
  26. <intent-filter>
  27. <action android:name="android.intent.action.MAIN"/>
  28. <category android:name="android.intent.category.LAUNCHER"/>
  29. </intent-filter>
  30. </activity>
  31. <!-- <uses-permission android:name="android.permission.INTERNET"/> -->
  32. </application>
  33. </manifest>