react-native-webrtc / react-native-incall-manager

Handling media-routes/sensors/events during a audio/video chat on React Native
ISC License
547 stars 191 forks source link

Not working on Android 12 #199

Closed davisuga closed 1 year ago

davisuga commented 2 years ago

When I use the library I get the following error image I added the android.permission.BLUETOOTH_CONNECT permission but it didn't work

adriano-rodrigues99 commented 2 years ago

Hi, try something like this

<uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" /> <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/> <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />

davisuga commented 1 year ago

Solved, thank you!