AndroidManifest.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools">
  4. <application
  5. android:allowBackup="true"
  6. android:dataExtractionRules="@xml/data_extraction_rules"
  7. android:fullBackupContent="@xml/backup_rules"
  8. android:icon="@mipmap/ic_launcher"
  9. android:label="@string/app_name"
  10. android:roundIcon="@mipmap/ic_launcher_round"
  11. android:supportsRtl="true"
  12. android:theme="@style/Theme.Six"
  13. tools:targetApi="31">
  14. <activity
  15. android:name=".MainActivity"
  16. android:exported="true"
  17. android:theme="@style/Theme.Six">
  18. <intent-filter>
  19. <action android:name="android.intent.action.MAIN" />
  20. <category android:name="android.intent.category.LAUNCHER" />
  21. </intent-filter>
  22. <intent-filter>
  23. <action android:name="android.intent.action.VIEW" />
  24. <category android:name="android.intent.category.DEFAULT" />
  25. <category android:name="android.intent.category.BROWSABLE" />
  26. <data
  27. android:host="launcher"
  28. android:scheme="six-applet" />
  29. </intent-filter>
  30. <intent-filter>
  31. <action android:name="android.intent.action.VIEW" />
  32. <category android:name="android.intent.category.DEFAULT" />
  33. <category android:name="android.intent.category.BROWSABLE" />
  34. <data
  35. android:host="browser"
  36. android:path="/kiosk"
  37. android:scheme="six-applet" />
  38. </intent-filter>
  39. <intent-filter>
  40. <action android:name="android.intent.action.VIEW" />
  41. <category android:name="android.intent.category.DEFAULT" />
  42. <category android:name="android.intent.category.BROWSABLE" />
  43. <data
  44. android:host="browser"
  45. android:path="/web"
  46. android:scheme="six-applet" />
  47. </intent-filter>
  48. </activity>
  49. <meta-data
  50. android:name="build_type_tag"
  51. android:value="@string/app_id" />
  52. </application>
  53. </manifest>