admin管理员组文章数量:1350067
I've a Flutter app built using flutter_blue_plus, this works just fine on android but when I try to run it on iOS it gives an issue when I try to initiate a BLE scan.
The log stream for the same being-
flutter: The Dart VM service is listening on http://127.0.0.1:56397/WD53Kf2Lcb8=/
[FBP-iOS] handleMethodCall: flutterRestart
[FBP-iOS] initializing CBCentralManager
[FBP-iOS] showPowerAlert: yes
[FBP-iOS] restoreState: no
API MISUSE: <CBCentralManager: 0x30032d2c0> has no restore identifier but the delegate implements the centralManager:willRestoreState: method. Restoring will not be supported
[FBP-iOS] initializing checkForMtuChangesTimer
[FBP-iOS] disconnectAllDevices(flutterRestart)
[FBP-iOS] connectedPeripherals: 0
[FBP-iOS] handleMethodCall: getAdapterState
[FBP-iOS] centralManagerDidUpdateState CBManagerStatePoweredOn
The bluetooth implementation of mine is here for reference. The exact same thing works fine on Android so I'm assuming, it is some iOS platform specific thing that I'm missing.
Thanks Regards.
I've a Flutter app built using flutter_blue_plus, this works just fine on android but when I try to run it on iOS it gives an issue when I try to initiate a BLE scan.
The log stream for the same being-
flutter: The Dart VM service is listening on http://127.0.0.1:56397/WD53Kf2Lcb8=/
[FBP-iOS] handleMethodCall: flutterRestart
[FBP-iOS] initializing CBCentralManager
[FBP-iOS] showPowerAlert: yes
[FBP-iOS] restoreState: no
API MISUSE: <CBCentralManager: 0x30032d2c0> has no restore identifier but the delegate implements the centralManager:willRestoreState: method. Restoring will not be supported
[FBP-iOS] initializing checkForMtuChangesTimer
[FBP-iOS] disconnectAllDevices(flutterRestart)
[FBP-iOS] connectedPeripherals: 0
[FBP-iOS] handleMethodCall: getAdapterState
[FBP-iOS] centralManagerDidUpdateState CBManagerStatePoweredOn
The bluetooth implementation of mine is here for reference. The exact same thing works fine on Android so I'm assuming, it is some iOS platform specific thing that I'm missing.
Thanks Regards.
Share Improve this question asked Apr 2 at 6:44 Yolo-cell-hashYolo-cell-hash 9311 bronze badges1 Answer
Reset to default 1It is a warning that won't necessarily affect the operation of your app.
Exactly as the message says, the CBCentralManagerDelegate
in flutter_blue_plus implements the willRestoreState
method, but the CBCentralManagerOptionRestoreIdentifierKey
is only specified if your set FlutterBluePlus.setOptions(restoreState: true);
as described in the documentation.
Opting in to state restoration allows iOS to relaunch your app if a pending Bluetooth operation (such as completing a pending connection to a peripheral) occurs while your app is terminated.
本文标签: FlutteriOS API Misuse ltCBCentralManager 0x30032d2c0gtStack Overflow
版权声明:本文标题:Flutter - iOS API Misuse <CBCentralManager: 0x30032d2c0> - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743855370a2550762.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论