aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAnssi Hannula <anssi@xbmc.org>2014-07-23 21:42:03 +0300
committerAnssi Hannula <anssi@xbmc.org>2014-07-23 21:42:03 +0300
commitedce59f6d107c12a916e84dc1bba7ec33977c941 (patch)
tree696d64e4d6b60555372fe2edf19a2a476457b8ce /tools
parentacffcadf853be7d361b2c619a91e909f408cf968 (diff)
[android] Declare touchscreen as unneeded
We do not require touchscreen (though we can use it). Declare it as not required in the manifest (it defaults to required as per documentation). This is mostly cosmetic at this point, since it mostly affects Play Store filtering, but it does not hurt to have the manifest correct.
Diffstat (limited to 'tools')
-rw-r--r--tools/android/packaging/xbmc/AndroidManifest.xml.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/android/packaging/xbmc/AndroidManifest.xml.in b/tools/android/packaging/xbmc/AndroidManifest.xml.in
index eacaf3ada0..1d042e6f52 100644
--- a/tools/android/packaging/xbmc/AndroidManifest.xml.in
+++ b/tools/android/packaging/xbmc/AndroidManifest.xml.in
@@ -12,6 +12,8 @@
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.GET_TASKS" />
+
+ <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<application android:icon="@drawable/ic_launcher" android:debuggable="true" android:label="@string/app_name" android:hasCode="true">
<activity