WebBLE
WebBLE copied to clipboard
Support handling bluetooth notifications in the background
As per apple's docs iOS does in principle allow bluetooth low energy apps to run in the background to handle bluetooth events, and it would be nice if WebBLE could make use of this.
It turns out this is as easy as adding the following to the applications info.plist file. Maybe you can try it out. :)
<key>UIBackgroundModes</key> <array> <string>bluetooth-central</string> </array>