On the v.11.5.6, for the
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" android:usesPermissionFlags="neverForLocation" tools:targetApi="s" /> permission,
android:usesPermissionFlags="neverForLocation"
flag prevents scanner from finding beacons even though adding
`
`
permission to main project.
Removing android:usesPermissionFlags="neverForLocation" flag solves the problem.
Thats not a problem with the library itself but a environment configuration problem.
But we'll gonna add that into the docs so nobody suffers with that.
On the v.11.5.6, for the
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" android:usesPermissionFlags="neverForLocation" tools:targetApi="s" />
permission,android:usesPermissionFlags="neverForLocation"
flag prevents scanner from finding beacons even though adding `` permission to main project.
Removing
android:usesPermissionFlags="neverForLocation"
flag solves the problem.It took me a full day to resolve the issue.