summaryrefslogtreecommitdiffhomepage
path: root/android/app/src/androidTest/AndroidManifest.xml
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2023-11-22 14:05:33 +0100
committerAlbin <albin@mullvad.net>2023-11-22 15:27:47 +0100
commit284ef737263cea2e080f6b614a4ea999655d690b (patch)
tree2551ebd91446498b0c91447b8d66a634e168804d /android/app/src/androidTest/AndroidManifest.xml
parentabaff0b2ace845d3b44ef70860ddbb559706ed2d (diff)
downloadmullvadvpn-284ef737263cea2e080f6b614a4ea999655d690b.tar.xz
mullvadvpn-284ef737263cea2e080f6b614a4ea999655d690b.zip
Explicity set allowBackup=false in manifests
This is the same as already used in the main manifest.
Diffstat (limited to 'android/app/src/androidTest/AndroidManifest.xml')
-rw-r--r--android/app/src/androidTest/AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/android/app/src/androidTest/AndroidManifest.xml b/android/app/src/androidTest/AndroidManifest.xml
index c369eb60db..7e6663f58c 100644
--- a/android/app/src/androidTest/AndroidManifest.xml
+++ b/android/app/src/androidTest/AndroidManifest.xml
@@ -2,5 +2,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Required on certain Android versions and/or ABIs
https://github.com/mockk/mockk/issues/297#issuecomment-641361770 -->
- <application android:extractNativeLibs="true" />
+ <application android:extractNativeLibs="true"
+ android:allowBackup="false" />
</manifest>