How to run Qt app in background on Android?

I want to make an application in Qt for Android, and I have this problem: when the user presses the back button, my application receives QCloseEvent and it is killed. I want the application to run in the background, something like a service or a daemon. How can i do this?

+4
source share
1 answer

The creation of Android Services was added in Qt in version 5.7.

+1
source

All Articles