Skip to content

Commit

Permalink
Make USB host feature optional
Browse files Browse the repository at this point in the history
This allow to support device that have BLE but no OTG
  • Loading branch information
ataffanel committed Dec 8, 2014
1 parent 1585779 commit 4a1bb00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="se.bitcraze.crazyfliecontrol2"
android:versionCode="1"
android:versionCode="2"
android:versionName="0.1" >

<uses-sdk
android:minSdkVersion="12"
android:targetSdkVersion="19" />

<uses-feature android:name="android.hardware.usb.host" />
<uses-feature android:name="android.hardware.usb.host" android:required="false"/>

<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
Expand Down

0 comments on commit 4a1bb00

Please sign in to comment.