Qt 6.11 is out! See what's new in the release
blog
QAndroidService and event loop
-
Hi, I'm writing an app with a service. The service uses the QAndroidService object. So the main is:
int main(int argc, char *argv[]) { QAndroidService app(argc, argv); new QCMainFormService(); return app.exec(); }My problem is that the event loop does not work. How can I do in order to have a working event loop?