diff options
author | Thanasis Antoniou | 2019-11-10 17:05:20 +0200 |
---|---|---|
committer | Thanasis Antoniou | 2019-11-10 17:05:20 +0200 |
commit | e7a19d378e0ca12d87d5a1545e3ca2a7cf712778 (patch) | |
tree | 5f57006fa9bcdc567c28e5065161a16f9830cf63 | |
parent | 773295842ac5cae66da0361d6c4914faee80fb00 (diff) | |
download | scummvm-rg350-e7a19d378e0ca12d87d5a1545e3ca2a7cf712778.tar.gz scummvm-rg350-e7a19d378e0ca12d87d5a1545e3ca2a7cf712778.tar.bz2 scummvm-rg350-e7a19d378e0ca12d87d5a1545e3ca2a7cf712778.zip |
ANDROID: Disable support for split screen
Currently the ScummVM app will just exit in split-screen so that's not desireable
Disabled until we implement proper support, if deemed necessary
-rw-r--r-- | dists/android/AndroidManifest.xml | 1 | ||||
-rw-r--r-- | dists/android/AndroidManifest.xml.in | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/dists/android/AndroidManifest.xml b/dists/android/AndroidManifest.xml index 0e30097213..22443fa611 100644 --- a/dists/android/AndroidManifest.xml +++ b/dists/android/AndroidManifest.xml @@ -54,6 +54,7 @@ android:description="@string/app_desc" android:allowBackup="true" android:isGame="true" + android:resizeableActivity="false" android:icon="@drawable/scummvm"> <activity android:name=".ScummVMActivity" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" diff --git a/dists/android/AndroidManifest.xml.in b/dists/android/AndroidManifest.xml.in index 17757d0a9c..3f8ccad934 100644 --- a/dists/android/AndroidManifest.xml.in +++ b/dists/android/AndroidManifest.xml.in @@ -54,6 +54,7 @@ android:description="@string/app_desc" android:allowBackup="true" android:isGame="true" + android:resizeableActivity="false" android:icon="@drawable/scummvm"> <activity android:name=".ScummVMActivity" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |