Skip to content

Commit 2f8979b

Browse files
committed
fix bug
1 parent 1c5086b commit 2f8979b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
but in fact some manufacturers still need it for BLE to properly work :
99
https://stackoverflow.com/a/72370969
1010
-->
11-
<uses-permission android:name="android.permission.BLUETOOTH" tools:remove="android:maxSdkVersion" />
11+
<uses-permission android:name="android.permission.BLUETOOTH" />
1212
<!--
1313
should normally only be needed on android < 12 if you want to:
1414
- activate bluetooth programmatically
1515
- discover local BLE devices
1616
see: https://developer.android.com/guide/topics/connectivity/bluetooth/permissions#discover-local-devices.
1717
Same as above, may still be wrongly needed by some manufacturers on android 12+.
1818
-->
19-
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" tools:remove="android:maxSdkVersion" />
19+
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
2020

2121
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" android:maxSdkVersion="28"/>
2222
<uses-permission-sdk-23 android:name="android.permission.ACCESS_FINE_LOCATION" android:maxSdkVersion="30"/>

0 commit comments

Comments
 (0)