summaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorArtur Dryomov <artur.dryomov@gmail.com>2013-07-30 16:14:43 +0300
committerArtur Dryomov <artur.dryomov@gmail.com>2013-07-30 23:51:58 +0300
commitc1b522c591bc9316c21cc3af4f183f59bb28dfad (patch)
treee7142d910b96a8e47b611c679c2134b29d896233 /android
parentFix application and first activity titles bug. (diff)
downloadcore-c1b522c591bc9316c21cc3af4f183f59bb28dfad.tar.gz
core-c1b522c591bc9316c21cc3af4f183f59bb28dfad.zip
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.xml13
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"