I have an Android 10 BLE app that I've been working on. It periodically connects and disconnects to and from two GATT servers. This works while the app is active, and I have it on a foreground service so that the connections keep going out while the phone is in use. However, the end goal of my application requires these connections to keep happening when the screen is off. I've acquired a WakeLock
to be safe, and even that is not capable of letting the BLE connections go out.
Is there anything I can do with Android 10 to do this? Thank you.