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
This commit is contained in:
Artur Dryomov 2013-07-30 16:14:43 +03:00
parent c01a2c8284
commit c1b522c591

View File

@ -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"