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>