AndroidManifest.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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. <uses-permission android:name="android.permission.INTERNET" />
  5. <application
  6. android:name=".App"
  7. android:allowBackup="false"
  8. android:dataExtractionRules="@xml/data_extraction_rules"
  9. android:fullBackupContent="false"
  10. android:icon="@mipmap/ic_launcher"
  11. android:label="@string/outln_app_name"
  12. android:roundIcon="@mipmap/ic_launcher_round"
  13. android:supportsRtl="true"
  14. android:theme="@style/Theme.Outline"
  15. tools:targetApi="31">
  16. <activity
  17. android:name=".MainActivity"
  18. android:exported="true">
  19. <intent-filter>
  20. <action android:name="android.intent.action.MAIN" />
  21. <category android:name="android.intent.category.LAUNCHER" />
  22. </intent-filter>
  23. </activity>
  24. </application>
  25. <queries>
  26. <package android:name="org.outline.android.client" />
  27. </queries>
  28. </manifest>