[CoreBluetooth] API MISUSE: <CBCentralManager: 0x2821e4120> has no restore identifier but the delegate implements the centralManager:willRestoreState: method. Restoring will not be supported
[CoreBluetooth] XPC connection invalid
[CoreBluetooth] API MISUSE: <CBCentralManager: 0x2821e4120> can only accept this command while in the powered on state
블루투스 주변 장치 정보를 얻고 싶어서
React Native Ble Manager 사용하다가 (버튼 눌렀을 때 스캔 X)
위와 같은 오류들이 났는데 아래 사이트의
아래와 같은 답변 덕분에 해결 방법을 찾았다
결론은
그냥 스캔하는게 아니라
현재 상태가 변경되면 스캔을 해줘야하는 것...
componentDidMount() {
...
bleManagerEmitter.addListener("BleManagerDidUpdateState",
(args) => {
if (args.state == "on") { // 상태가 변경되면
this.scan(); // 스캔
}
});
...
}
...
// 스캔
scan() {
BleManager.scan([], 5, true).then(() => {
// Success code
console.log("Scan started");
});
}
'Web > React-native' 카테고리의 다른 글
React Native pod install (0) | 2022.10.18 |
---|---|
XCode because it has an invalid code signature, inadequate entitlements or its profile has not been explicitly trusted by the user. (0) | 2022.10.10 |
Zustand 함수형, 클래스형 함수 실행 및 변수 출력 (0) | 2022.10.06 |
네이티브 앱, 웹 앱, 하이브리드 앱 (0) | 2021.06.07 |
React-native, 개발환경 및 Expo로 프로젝트 생성/실행 (0) | 2021.06.06 |