Auto launch of IOS application when a Bluetooth connection is established in the background

Hi Team,

How to automatically launch iOS application when a Bluetooth connection is established? i.e when the application is pushed to the background, the BT connection with the peripheral will still happen. At this point of time, I want my app to come back to the foreground. How to achieve this ? I have enabled the UIBackgroundModes as below. The application is a Xamarin.ios app.

<key>UIBackgroundModes</key>
<array>
	<string>bluetooth-central</string>
	<string>bluetooth-peripheral</string>
</array>

Not receiving the notifications in DidReceiveRemoteNotification() call.

Another update is that not getting the BT updates from "CBCentralManager" interface also.

Auto launch of IOS application when a Bluetooth connection is established in the background
 
 
Q