AndroidManifest.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android">
  3. <!-- 网络请求 -->
  4. <uses-permission android:name="android.permission.INTERNET" />
  5. <application
  6. android:allowBackup="true"
  7. android:dataExtractionRules="@xml/data_extraction_rules"
  8. android:fullBackupContent="@xml/backup_rules"
  9. android:icon="@mipmap/ic_launcher"
  10. android:label="@string/app_name"
  11. android:roundIcon="@mipmap/ic_launcher_round"
  12. android:supportsRtl="true"
  13. android:theme="@style/Theme.Bozzys"
  14. android:usesCleartextTraffic="true">
  15. <!-- 闪屏页面 -->
  16. <activity
  17. android:name=".ui.pages.PageSplash"
  18. android:exported="true"
  19. android:label="@string/app_name"
  20. android:theme="@style/Theme.BozzysSplash">
  21. <intent-filter>
  22. <action android:name="android.intent.action.MAIN" />
  23. <category android:name="android.intent.category.LAUNCHER" />
  24. </intent-filter>
  25. </activity>
  26. <!-- 主页面 -->
  27. <activity
  28. android:name=".ui.pages.PageHome"
  29. android:exported="true"
  30. android:launchMode="singleTask"
  31. android:theme="@style/Theme.Bozzys" />
  32. </application>
  33. </manifest>