summaryrefslogtreecommitdiffhomepage
path: root/android/app/src
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2023-11-22 15:42:03 +0100
committerAlbin <albin@mullvad.net>2023-11-22 15:42:03 +0100
commit4c06942baa5197a139b8bf53f46c1fe5630625be (patch)
tree80d70803f010a000743286de9333cec0b82bc29d /android/app/src
parent507e5c9b482b5416e1257c612505495c9ae84797 (diff)
parent524428ee4a4a80bf547bf3290836f062352c43df (diff)
downloadmullvadvpn-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.xml4
-rw-r--r--android/app/src/debug/AndroidManifest.xml38
-rw-r--r--android/app/src/devmole/AndroidManifest.xml11
-rw-r--r--android/app/src/stagemole/AndroidManifest.xml11
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>