AndroidManifest.xml 771 B

123456789101112131415161718192021222324
  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. package="com.datarecovery.my.master">
  5. <uses-permission android:name="android.permission.INTERNET" />
  6. <application
  7. android:allowBackup="true"
  8. android:dataExtractionRules="@xml/data_extraction_rules"
  9. android:fullBackupContent="@xml/backup_rules"
  10. android:icon="@mipmap/ic_launcher"
  11. android:label="@string/app_name"
  12. android:roundIcon="@mipmap/ic_launcher_round"
  13. android:supportsRtl="true"
  14. tools:replace="android:allowBackup"
  15. android:theme="@style/Theme.DataRecover"
  16. tools:targetApi="31">
  17. </application>
  18. </manifest>