diff options
Diffstat (limited to 'android')
| -rw-r--r-- | android/app/src/debug/AndroidManifest.xml | 2 | ||||
| -rw-r--r-- | android/app/src/devmole/AndroidManifest.xml | 8 | ||||
| -rw-r--r-- | android/app/src/main/AndroidManifest.xml | 1 | ||||
| -rw-r--r-- | android/app/src/stagemole/AndroidManifest.xml | 8 |
4 files changed, 17 insertions, 2 deletions
diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml index e1a8f8be40..b1674e98f1 100644 --- a/android/app/src/debug/AndroidManifest.xml +++ b/android/app/src/debug/AndroidManifest.xml @@ -4,7 +4,7 @@ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> - <application android:label="@string/app_name" + <application android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher" android:theme="@style/AppTheme" diff --git a/android/app/src/devmole/AndroidManifest.xml b/android/app/src/devmole/AndroidManifest.xml new file mode 100644 index 0000000000..43b74c1f16 --- /dev/null +++ b/android/app/src/devmole/AndroidManifest.xml @@ -0,0 +1,8 @@ +<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" /> +</manifest> diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 7eede7ed33..432244d16f 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -30,7 +30,6 @@ --> <activity android:name="net.mullvad.mullvadvpn.ui.MainActivity" android:exported="true" - android:label="@string/app_name" android:launchMode="singleTask" android:configChanges="orientation|screenSize|screenLayout" android:screenOrientation="locked" diff --git a/android/app/src/stagemole/AndroidManifest.xml b/android/app/src/stagemole/AndroidManifest.xml new file mode 100644 index 0000000000..3a9d85b0cc --- /dev/null +++ b/android/app/src/stagemole/AndroidManifest.xml @@ -0,0 +1,8 @@ +<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" /> +</manifest> |
