diff options
author | Chris "Koying" Browet <cbro@semperpax.com> | 2013-09-13 19:23:54 +0200 |
---|---|---|
committer | Chris "Koying" Browet <cbro@semperpax.com> | 2013-09-13 19:26:51 +0200 |
commit | a5058b2fb4988d8d6046c5bc5e404824ce7978a2 (patch) | |
tree | 83e9efdf544b96e4bcb85c9d0d9f68463361bdc4 /tools | |
parent | 429ce9bc69cdee21d3f3be23c1f7147f25b42db6 (diff) |
FIX: [droid] Prevent droid from shutting us down when an usb/BT keyboard/gamepad is plugged in/out
Diffstat (limited to 'tools')
-rw-r--r-- | tools/android/packaging/xbmc/AndroidManifest.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/android/packaging/xbmc/AndroidManifest.xml b/tools/android/packaging/xbmc/AndroidManifest.xml index 1f14fed96a..dd3a84b537 100644 --- a/tools/android/packaging/xbmc/AndroidManifest.xml +++ b/tools/android/packaging/xbmc/AndroidManifest.xml @@ -16,7 +16,7 @@ <application android:icon="@drawable/ic_launcher" android:debuggable="true" android:label="@string/app_name" android:hasCode="true"> <activity android:name=".Splash" - android:configChanges="orientation|keyboardHidden" + android:configChanges="orientation|keyboard|keyboardHidden|navigation" android:finishOnTaskLaunch="true" android:launchMode="singleInstance" android:screenOrientation="sensorLandscape" @@ -58,7 +58,7 @@ --> <activity android:name=".Main" - android:configChanges="orientation|keyboardHidden" + android:configChanges="orientation|keyboard|keyboardHidden|navigation" android:finishOnTaskLaunch="true" android:label="XBMC" android:launchMode="singleInstance" |