You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was working on updating the example project to run iOS 14 by adding the following to Runner/Info.plist
<key>NSBonjourServices</key>
<array>
<string>_dartobservatory._tcp</string>
</array>
<key>NSBluetoothAlwaysUsageDescription</key>
<string>The app uses bluetooth to find, connect and transfer data between different devices</string>
<key>NSBluetoothPeripheralUsageDescription</key>
<string>The app uses bluetooth to find, connect and transfer data between different devices</string>
<key>UIBackgroundModes</key>
<array>
<string>bluetooth-central</string>
</array>
And in ergblemanager.dart I added a restoreStateIdentifier.
The text was updated successfully, but these errors were encountered:
Aldaniee
changed the title
iOS 14 needs restoreStateIdentifier specification
iOS 16 needs restoreStateIdentifier specification and has Error 103 issue
Nov 6, 2022
Thanks for finding these! feel free to submit a PR to make those changes to the Info.plist.
Error 103 seems interesting. id be curious as to if it means bluetoth is literally in a state called "unknown", or if that error means bluetooth doesn't know what state its in or cant find out. Is bluetooth turned on on the device you are testing with?
I was working on updating the example project to run iOS 14 by adding the following to
Runner/Info.plist
And in
ergblemanager.dart
I added a restoreStateIdentifier.Now the error I'm stuck on is the following:
Error 103
The text was updated successfully, but these errors were encountered: