diff options
author | Artur Dryomov <artur.dryomov@gmail.com> | 2013-07-30 16:14:43 +0300 |
---|---|---|
committer | Artur Dryomov <artur.dryomov@gmail.com> | 2013-07-30 23:51:58 +0300 |
commit | c1b522c591bc9316c21cc3af4f183f59bb28dfad (patch) | |
tree | e7142d910b96a8e47b611c679c2134b29d896233 /android | |
parent | c01a2c8284b17c1a28501f25caeedeace62494c9 (diff) |
Remove explicit Bluetooth requirement.
Devices without Bluetooth should be able to use the app as well via WiFi
connections. This change should remove some Google Play filtering so
these devices will be able to download the app from the store.
Change-Id: Iebc2f14e0bc57ea7293f8abfa1824b99c4476e8b
Diffstat (limited to 'android')
-rw-r--r-- | android/sdremote/AndroidManifest.xml | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/android/sdremote/AndroidManifest.xml b/android/sdremote/AndroidManifest.xml index 938e0e6418b9..842972f04913 100644 --- a/android/sdremote/AndroidManifest.xml +++ b/android/sdremote/AndroidManifest.xml @@ -5,9 +5,16 @@ android:versionName="1.0.6+ Impress Remote" android:installLocation="auto"> - <uses-permission android:name="android.permission.INTERNET"/> - <uses-permission android:name="android.permission.BLUETOOTH"/> - <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/> + <uses-permission + android:name="android.permission.INTERNET"/> + <uses-permission + android:name="android.permission.BLUETOOTH"/> + <uses-permission + android:name="android.permission.BLUETOOTH_ADMIN"/> + + <uses-feature + android:name="android.hardware.bluetooth" + android:required="false"/> <uses-sdk android:minSdkVersion="10" |