8000 Update README.md, fix #211 · next-coder/flutter-webrtc@c6423b2 · GitHub
[go: up one dir, main page]

Skip to content

Commit c6423b2

Browse files
authored
Update README.md, fix flutter-webrtc#211
Added description of Bluetooth device permissions for Android.
1 parent da23d17 commit c6423b2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ Ensure the following permission is present in your Android Manifest file, locate
4242
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
4343
```
4444

45+
If you need to use a Bluetooth device, please add:
46+
```xml
47+
<uses-permission android:name="android.permission.BLUETOOTH" />
48+
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
49+
```
50+
4551
The Flutter project template adds it, so it may already be there.
4652

4753
Also you will need to set your build settings to Java 8, because official WebRTC jar now uses static methods in `EglBase` interface. Just add this to your app level `build.gradle`:

0 commit comments

Comments
 (0)
0