Starting qt application on boot completed android
-
The following is the code I'm using for starting my Application when device is turned on.
and in the Manifest:
The permissions inside the Manifest are the following:
Activity in the manifest is as follows:
I want my Qt application to run on the Android device after boot complete.
After doing all these steps, when the Android device is turned on, the qt application does not start and I receive an error saying "Unfortunately, the application has stopped".Is there anything I did wrong or missing? I would like your help.
-
@GulsahAkt I solved my problem by writing a service in Android Studio. As a result of my research, I read that qt does not support the libraries required for initialization after boot. I was able to run my qt application after booting with the service written in Android Studio.
-