summaryrefslogtreecommitdiffhomepage
path: root/android/app/src/debug
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2023-12-13 13:57:41 +0100
committerAlbin <albin@mullvad.net>2023-12-13 13:57:41 +0100
commitc1e2a227931e8e6011353ff9fce56fe733e4ac63 (patch)
treec1a30d9ae1b18e7cbbe533b7ee55a367a6861ccd /android/app/src/debug
parent5d65e4828385f669a498f4e0605850237c5d93d7 (diff)
parentdb99a389c8d4a7dad7a05f904d86c2cc7dff964a (diff)
downloadmullvadvpn-c1e2a227931e8e6011353ff9fce56fe733e4ac63.tar.xz
mullvadvpn-c1e2a227931e8e6011353ff9fce56fe733e4ac63.zip
Merge branch 'remove-write_external_storage-permission-for-android-13-droid-367'
Diffstat (limited to 'android/app/src/debug')
-rw-r--r--android/app/src/debug/AndroidManifest.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml
index ff2d7e28a0..a4433cfca1 100644
--- a/android/app/src/debug/AndroidManifest.xml
+++ b/android/app/src/debug/AndroidManifest.xml
@@ -1,7 +1,11 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
- <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"
+ tools:remove="android:maxSdkVersion"
+ tools:ignore="ScopedStorage" />
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
+ tools:remove="android:maxSdkVersion"
+ tools:ignore="ScopedStorage" />
<application android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher"
android:theme="@style/AppTheme"