diff options
| author | Albin <albin@mullvad.net> | 2023-11-22 15:42:03 +0100 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2023-11-22 15:42:03 +0100 |
| commit | 4c06942baa5197a139b8bf53f46c1fe5630625be (patch) | |
| tree | 80d70803f010a000743286de9333cec0b82bc29d /android/app/src | |
| parent | 507e5c9b482b5416e1257c612505495c9ae84797 (diff) | |
| parent | 524428ee4a4a80bf547bf3290836f062352c43df (diff) | |
| download | mullvadvpn-4c06942baa5197a139b8bf53f46c1fe5630625be.tar.xz mullvadvpn-4c06942baa5197a139b8bf53f46c1fe5630625be.zip | |
Merge branch 'fix-or-suppress-mobsfscan-issues-droid-531'
Diffstat (limited to 'android/app/src')
| -rw-r--r-- | android/app/src/androidTest/AndroidManifest.xml | 4 | ||||
| -rw-r--r-- | android/app/src/debug/AndroidManifest.xml | 38 | ||||
| -rw-r--r-- | android/app/src/devmole/AndroidManifest.xml | 11 | ||||
| -rw-r--r-- | android/app/src/stagemole/AndroidManifest.xml | 11 |
4 files changed, 29 insertions, 35 deletions
diff --git a/android/app/src/androidTest/AndroidManifest.xml b/android/app/src/androidTest/AndroidManifest.xml index 8d37c966e9..7e6663f58c 100644 --- a/android/app/src/androidTest/AndroidManifest.xml +++ b/android/app/src/androidTest/AndroidManifest.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <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> diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml index b1674e98f1..ff2d7e28a0 100644 --- a/android/app/src/debug/AndroidManifest.xml +++ b/android/app/src/debug/AndroidManifest.xml @@ -1,25 +1,21 @@ <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"/> - - <application - android:icon="@mipmap/ic_launcher" - android:roundIcon="@mipmap/ic_launcher" - android:theme="@style/AppTheme" - android:extractNativeLibs="true" - android:allowBackup="false" - android:banner="@drawable/banner" - android:name=".MullvadApplication" - tools:ignore="GoogleAppIndexingWarning"> + 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" /> + <application android:icon="@mipmap/ic_launcher" + android:roundIcon="@mipmap/ic_launcher" + android:theme="@style/AppTheme" + android:extractNativeLibs="true" + android:allowBackup="false" + android:banner="@drawable/banner" + android:name=".MullvadApplication" + tools:ignore="GoogleAppIndexingWarning"> <activity android:name="net.mullvad.mullvadvpn.TestActivity" - android:label="@string/app_name" - android:launchMode="singleTask" - android:configChanges="orientation|screenSize|screenLayout" - android:screenOrientation="locked" - android:windowSoftInputMode="adjustPan" - android:exported="true"> - </activity> + android:label="@string/app_name" + android:launchMode="singleTask" + android:configChanges="orientation|screenSize|screenLayout" + android:screenOrientation="locked" + android:windowSoftInputMode="adjustPan" + android:exported="true"></activity> </application> </manifest> diff --git a/android/app/src/devmole/AndroidManifest.xml b/android/app/src/devmole/AndroidManifest.xml index 43b74c1f16..602aecb6e4 100644 --- a/android/app/src/devmole/AndroidManifest.xml +++ b/android/app/src/devmole/AndroidManifest.xml @@ -1,8 +1,7 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:tools="http://schemas.android.com/tools"> - - <application - android:icon="@mipmap/ic_launcher" - android:label="Devmole VPN" - tools:replace="android:label" /> + xmlns:tools="http://schemas.android.com/tools"> + <application android:icon="@mipmap/ic_launcher" + android:label="Devmole VPN" + tools:replace="android:label" + android:allowBackup="false" /> </manifest> diff --git a/android/app/src/stagemole/AndroidManifest.xml b/android/app/src/stagemole/AndroidManifest.xml index 3a9d85b0cc..204a6b6290 100644 --- a/android/app/src/stagemole/AndroidManifest.xml +++ b/android/app/src/stagemole/AndroidManifest.xml @@ -1,8 +1,7 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:tools="http://schemas.android.com/tools"> - - <application - android:icon="@mipmap/ic_launcher" - android:label="Stagemole VPN" - tools:replace="android:label" /> + xmlns:tools="http://schemas.android.com/tools"> + <application android:icon="@mipmap/ic_launcher" + android:label="Stagemole VPN" + tools:replace="android:label" + android:allowBackup="false" /> </manifest> |
