diff options
author | Anssi Hannula <anssi@xbmc.org> | 2014-07-23 21:42:03 +0300 |
---|---|---|
committer | Anssi Hannula <anssi@xbmc.org> | 2014-07-23 21:42:03 +0300 |
commit | edce59f6d107c12a916e84dc1bba7ec33977c941 (patch) | |
tree | 696d64e4d6b60555372fe2edf19a2a476457b8ce /tools | |
parent | acffcadf853be7d361b2c619a91e909f408cf968 (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.in | 2 |
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 |