WebBLE icon indicating copy to clipboard operation
WebBLE copied to clipboard

Support handling bluetooth notifications in the background

Open daphtdazz opened this issue 7 years ago • 1 comments

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.

daphtdazz avatar Oct 09 '18 07:10 daphtdazz

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>

ANGOmarcello avatar Dec 08 '21 15:12 ANGOmarcello