Skip to content

Commit

Permalink
Merge pull request #365 from ytai/BluetoothOnOlderDevices
Browse files Browse the repository at this point in the history
Bluetooth on older devices
  • Loading branch information
hannesa2 authored May 9, 2024
2 parents 0fe62a6 + b8a21e4 commit b7ed0a8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion IOIOLibAndroidBluetooth/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.BLUETOOTH" />
<!-- Request legacy Bluetooth permissions on older devices. -->
<uses-permission
android:name="android.permission.BLUETOOTH"
android:maxSdkVersion="30" />
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
</manifest>

0 comments on commit b7ed0a8

Please sign in to comment.