智莺生活APP的阿里百川 Flutter 插件
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

2 лет назад
2 лет назад
1234567891011121314151617181920212223242526272829303132333435363738
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. package="wxwx.com.flutter_alibc_example">
  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="io.flutter.app.FlutterApplication"
  11. android:icon="@mipmap/ic_launcher"
  12. android:allowBackup="true"
  13. android:label="flutter_alibc_example"
  14. tools:replace="android:label,android:allowBackup">
  15. <activity
  16. android:name=".MainActivity"
  17. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  18. android:hardwareAccelerated="true"
  19. android:launchMode="singleTop"
  20. android:theme="@style/Theme.AppCompat.Light.NoActionBar"
  21. android:windowSoftInputMode="adjustResize">
  22. <!-- This keeps the window background of the activity showing
  23. until Flutter renders its first frame. It can be removed if
  24. there is no splash screen (such as the default splash screen
  25. defined in @style/LaunchTheme). -->
  26. <meta-data
  27. android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
  28. android:value="true" />
  29. <intent-filter>
  30. <action android:name="android.intent.action.MAIN" />
  31. <category android:name="android.intent.category.LAUNCHER" />
  32. </intent-filter>
  33. </activity>
  34. <activity android:name="com.wxwx.flutter_alibc.web.WebViewActivity"></activity>
  35. <activity android:name="com.wxwx.flutter_alibc.WebActivity"></activity>
  36. </application>
  37. </manifest>