AndroidManifest.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  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:allowBackup="true"
  7. android:usesCleartextTraffic="true"
  8. android:dataExtractionRules="@xml/data_extraction_rules"
  9. android:fullBackupContent="@xml/backup_rules"
  10. android:icon="@drawable/logo"
  11. android:label="@string/app_name"
  12. android:roundIcon="@drawable/logo"
  13. android:supportsRtl="true"
  14. android:theme="@style/Theme.PDA"
  15. tools:targetApi="31"
  16. android:name=".InitPDA">
  17. <activity
  18. android:name=".MainActivity"
  19. android:exported="true"
  20. android:label="@string/app_name"
  21. android:theme="@style/Theme.PDA">
  22. <intent-filter>
  23. <action android:name="android.intent.action.MAIN" />
  24. <category android:name="android.intent.category.LAUNCHER" />
  25. </intent-filter>
  26. </activity>
  27. </application>
  28. </manifest>