Skip to content

Commit

Permalink
Merge pull request #9 from Unacademy/bluetooth-permissions
Browse files Browse the repository at this point in the history
Added bluetooth permissions for android 12+
  • Loading branch information
msaikrishna authored Nov 18, 2022
2 parents 1e29b4b + e74620b commit 043055e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.zxcpoiu.incallmanager" >
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" />
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
</manifest>

0 comments on commit 043055e

Please sign in to comment.