Mikołaj Kojdecki
Mikołaj Kojdecki
Can you try the following sequence? 1. setup connection observer and log the status 2. connect 3. read the characteristic 4. disconnect 5. try to read the characteristic (await all...
What device, what OS version, how have you established this?
As far as I can tell they should still be under `serviceUuids`, I think? https://developer.apple.com/documentation/corebluetooth/cbcentralmanagerdelegate/1518937-centralmanager https://developer.apple.com/documentation/corebluetooth/cbperipheralmanager/1393252-startadvertising Perhaps there's some issue with translating uuid from Flutter to iOS. Could you: 1)...
Hi! Could you run the example and paste the logs?
We're unable to help you until you provide logs. What's the exact error message and stack trace?
Hi! Your code looks OK, I think, especially since it's working on Android. Can you try changing log level to verbose to see if anything out of ordinary pops out?...
There should be a lot more logs from native part (multiplatform ble adapter). Could you try running from xcode to see if there aren't more of them?
Hi! Thanks for the issues. Wouldn't filtering them in Flutter better suit your needs? Like this: `startScan().filter((scanResult) { /* do whatever you want*/ }.listen()` The library mostly exposes the common...
Ah, didn't know that. Yeah, it makes sense! I'm not sure if it wouldn't force you to use [isolates in Flutter](https://flutter.dev/docs/development/packages-and-plugins/background-processes), but that's the user's concerns, plugin can't do anything...
Thanks! I'll fix that when I have the time.