startDeviceScan error - Cannot start scanning operation - error code: 600
See original GitHub issueI have the app built with this library.
On Galaxy S10 startDeviceScan method returns the following error.
{"message":"Cannot start scanning operation","errorCode":600,"attErrorCode":null,"iosErrorCode":null,"androidErrorCode":null,"reason":"Bluetooth cannot start (code 0)","name":"BleError"}
Issue Analytics
- State:
- Created a year ago
- Reactions:3
- Comments:8
Top Results From Across the Web
"Cannot start scanning operation" on Android (Samsung ...
I have built a RN app using this library. It works fine on the Galaxy Tab A I develop on but for some...
Read more >bleerror: cannot start scanning operation
On Galaxy S10 startDeviceScan method returns the following error. {"message":"Cannot start scanning operation","errorCode":600,"attErrorCode":null ...
Read more >RxBLELibraries/react-native-ble - Gitter
Hello guys. I have read that older verdions of the ble plx lib had problems where no backpressure handling has been applied on...
Read more >react-native-ble-plx scan does not run when moved inside ...
However I am experiencing a strange issue, that the scanning code does not work within the module when the same code works when...
Read more >Cannot Start Scanning Operation Error - CoachCare - Zendesk
Upon using the Weigh In feature to sync the App to the Scale if an error message is seen " Cannot Start Scanning...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi, i had the same issue with my Samsung S10 and got it fixed. The Samsung S10 has Android 12 and this android update has new permissions. So i updated my AndroidManifest.xml file with these Permissions:
And i also use this package to manage the Persmissions: https://github.com/zoontek/react-native-permissions
@ShaoGongBra
import {PERMISSIONS, RESULTS, requestMultiple} from 'react-native-permissions';
…await requestMultiple([
PERMISSIONS.ANDROID.BLUETOOTH_SCAN,
PERMISSIONS.ANDROID.BLUETOOTH_CONNECT,
])