Query test files

This commit is contained in:
Ed Minnix
2022-08-18 12:23:34 -04:00
parent d9c078060a
commit dac64eeca7
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<manifest ... >
<!-- GOOD: 'android:allowBackup' set to 'false' -->
<application
android:allowBackup="false">
<activity ... >
</activity>
</application>
</manifest>

View File

@@ -0,0 +1,8 @@
<manifest ... >
<!-- BAD: 'android:allowBackup' set to 'true' -->
<application
android:allowBackup="true">
<activity ... >
</activity>
</application>
</manifest>