Skip to content

Commit

Permalink
Specify targetApi to prevent warning on usesPermissionFlags (#767)
Browse files Browse the repository at this point in the history
  • Loading branch information
nrbrook committed Nov 10, 2021
1 parent be82382 commit 9403986
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rxandroidble/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.polidea.rxandroidble2">
<!-- required for API 18 - 30 -->
<uses-permission
Expand All @@ -15,5 +16,6 @@
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
<uses-permission
android:name="android.permission.BLUETOOTH_SCAN"
android:usesPermissionFlags="neverForLocation" />
android:usesPermissionFlags="neverForLocation"
tools:targetApi="s" />
</manifest>

0 comments on commit 9403986

Please sign in to comment.