mirror of https://github.com/x13a/Wasted.git
Android 12 data extraction rules
This commit is contained in:
parent
8809b143d8
commit
103d398a2b
|
@ -9,12 +9,15 @@
|
|||
|
||||
<application
|
||||
android:allowBackup="false"
|
||||
android:fullBackupContent="false"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:name=".Application"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/Theme.Wasted">
|
||||
android:theme="@style/Theme.Wasted"
|
||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||
tools:targetApi="s">
|
||||
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
|
|
|
@ -20,6 +20,7 @@ class Preferences(ctx: Context) {
|
|||
private const val WIPE_ON_INACTIVITY_DAYS = "wipe_on_inactivity_days"
|
||||
|
||||
private const val FILE_NAME = "sec_shared_prefs"
|
||||
|
||||
// migration
|
||||
private const val DO_WIPE = "do_wipe"
|
||||
private const val CODE_ENABLED = "code_enabled"
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<data-extraction-rules>
|
||||
<cloud-backup />
|
||||
<device-transfer />
|
||||
</data-extraction-rules>
|
Loading…
Reference in New Issue