We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My application is managing a BLE object and I need to manage all cases regarding connection. A great article is describing the pb here: https://uynguyen.github.io/2018/07/23/Best-practice-How-to-deal-with-Bluetooth-Low-Energy-in-background/
and Apple article: https://developer.apple.com/library/archive/documentation/NetworkingInternetWeb/Conceptual/CoreBluetooth_concepts/CoreBluetoothBackgroundProcessingForIOSApps/PerformingTasksWhileYourAppIsInTheBackground.html#//apple_ref/doc/uid/TP40013257-CH7-SW10
I do not see how the current library is managing State Preservation and Restoration.
Can you please help ?
What would be fine:
myCentralManager = [[CBCentralManager alloc] initWithDelegate:self queue:nil options:@{ CBCentralManagerOptionRestoreIdentifierKey: @"myCentralManagerIdentifier" }]
- (void)centralManager:(CBCentralManager *)central -- willRestoreState:(NSDictionary *)state { NSArray *peripherals = state[CBCentralManagerRestoredStatePeripheralsKey];
The text was updated successfully, but these errors were encountered:
Hi guys, any updates on this? This would be a useful feature
@fvisticot tks fo the articles
Sorry, something went wrong.
Hi @valtbarbos I'm currently tackling a similar issue in my own project. Curious what your solution ended up being?
Im using another library.
https://github.com/valtbarbos/flutter_blue/tree/master
here an example of background and auto reconnection, tested with iOS 13.1 valtbarbos/flutter_blue@651b121
I hope it is useful.
No branches or pull requests
My application is managing a BLE object and I need to manage all cases regarding connection.
A great article is describing the pb here:
https://uynguyen.github.io/2018/07/23/Best-practice-How-to-deal-with-Bluetooth-Low-Energy-in-background/
and Apple article:
https://developer.apple.com/library/archive/documentation/NetworkingInternetWeb/Conceptual/CoreBluetooth_concepts/CoreBluetoothBackgroundProcessingForIOSApps/PerformingTasksWhileYourAppIsInTheBackground.html#//apple_ref/doc/uid/TP40013257-CH7-SW10
I do not see how the current library is managing State Preservation and Restoration.
Can you please help ?
What would be fine:
The text was updated successfully, but these errors were encountered: