diff options
| author | Menny Even Danan <menny@evendanan.net> | 2015-11-15 20:25:53 +0000 |
|---|---|---|
| committer | Menny Even Danan <menny@evendanan.net> | 2015-11-15 20:27:46 +0000 |
| commit | 7667984e5c91d4dddf0ee2ccfdd163ce86ba2d56 (patch) | |
| tree | 036b0c475cbf106a71b16e0375ccc0f0baccd3b6 /src/main/AndroidManifest.xml | |
| parent | a56c203d9851978788c77412239f41be4f5f5aec (diff) | |
| download | AnySoftKeyboard-7667984e5c91d4dddf0ee2ccfdd163ce86ba2d56.tar.gz AnySoftKeyboard-7667984e5c91d4dddf0ee2ccfdd163ce86ba2d56.tar.bz2 | |
allowing fake-touch devices, which will allow Android TV devices. #536
Diffstat (limited to 'src/main/AndroidManifest.xml')
| -rw-r--r-- | src/main/AndroidManifest.xml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml index caf6a9f42..e2764da8d 100644 --- a/src/main/AndroidManifest.xml +++ b/src/main/AndroidManifest.xml @@ -7,7 +7,8 @@ android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" - android:xlargeScreens="true"/> + android:xlargeScreens="true" + tools:ignore="UnusedAttribute"/> <!-- http://d.android.com/guide/practices/screens_support.html read about legacy. --> <uses-permission android:name="android.permission.VIBRATE"/> @@ -19,9 +20,9 @@ <!-- REQUIRED BACKUP TO/RESTORE FROM SDCARD --> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> - <!-- currently, only support touch screens --> - <uses-configuration android:reqTouchScreen="finger"/> - <uses-configuration android:reqTouchScreen="stylus"/> + <!-- currently, only support touch and fake-touch devices --> + <uses-feature android:name="android.hardware.faketouch"/> + <uses-feature android:required="false" android:name="android.hardware.touchscreen"/> <application android:name=".AnyApplication" @@ -34,7 +35,7 @@ android:label="@string/ime_name" android:restoreAnyVersion="true" android:theme="@style/Theme.AskApp" - tools:ignore="UnusedAttribute"> + tools:ignore="GoogleAppIndexingWarning,UnusedAttribute"> <!-- used to backup the settings and SQL to the cloud --> <meta-data |
