What are some best practices for having a Windows 8 app that requires a connection to a Bluetooth device throughout the entire lifecycle of the app?
Meaning, my app needs to be connected and communicating with a Bluetooth device in all pages of the app. Of course, each page would transmit certain data related to the page.
Would I need to create a socket stream and then pass around to each page? I read something similar about having the code in the App.xaml.cs file for a UDP connection, but not sure how to do that either.
Any examples or docs would be helpful. Thanks in advance.