Skip to content

Commit c9fa5c9

Browse files
committed
AndroidManifest - update Bluetooth permissions
1 parent 0d82ffd commit c9fa5c9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/main/AndroidManifest.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
android:versionCode="1"
33
android:versionName="1.1" >
44

5-
<uses-permission android:name="android.permission.BLUETOOTH" />
6-
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
5+
<uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" />
6+
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:maxSdkVersion="30"/>
7+
8+
<!-- API 31 Needed only if your app communicates with already-paired Bluetooth devices. -->
9+
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
710
</manifest>

0 commit comments

Comments
 (0)