summaryrefslogtreecommitdiffhomepage
path: root/android/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2022-01-27 13:32:30 +0100
committerAlbin <albin@mullvad.net>2022-01-27 13:32:30 +0100
commit6e073cf040c3376ad191a7621301ec7f10ce71eb (patch)
tree6b2461c825f08aa526225ebfbb66d2014ada4f02 /android/app/src/main/AndroidManifest.xml
parentc81d787c9588800688930c88d0a69fa3ee6a06e9 (diff)
parentedc60b2e0c19a83d285491d0e8b86c92f96f4e86 (diff)
downloadmullvadvpn-6e073cf040c3376ad191a7621301ec7f10ce71eb.tar.xz
mullvadvpn-6e073cf040c3376ad191a7621301ec7f10ce71eb.zip
Merge branch 'fix-android-tv-startup-crash'
Diffstat (limited to 'android/app/src/main/AndroidManifest.xml')
-rw-r--r--android/app/src/main/AndroidManifest.xml14
1 files changed, 2 insertions, 12 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 5216de46d2..2cb2809891 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -28,27 +28,17 @@
android:label="@string/app_name"
android:launchMode="singleTask"
android:configChanges="orientation|screenSize|screenLayout"
- android:screenOrientation="sensorPortrait"
+ android:screenOrientation="locked"
android:windowSoftInputMode="adjustPan">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
+ <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" />
</intent-filter>
</activity>
- <activity android:name="net.mullvad.mullvadvpn.ui.activities.TVActivity"
- android:label="@string/app_name"
- android:launchMode="singleTask"
- android:configChanges="orientation|screenSize|screenLayout"
- android:screenOrientation="sensor"
- android:windowSoftInputMode="adjustPan">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
- </intent-filter>
- </activity>
<service android:name="net.mullvad.mullvadvpn.service.MullvadVpnService"
android:permission="android.permission.BIND_VPN_SERVICE"
android:process=":mullvadvpn_daemon"