Android application, which has background process running as service: WHAT TECHNIQUE TO CHOOSE
Unsolved
Mobile and Embedded
-
I need an application which must be do an action ( execute some code in Qt/C++ NOT JAVA ) when new SMS received. As far as I understand some part of app must be implemented as background process, something like (or exactly) service, to allow processing SMS when app is not running.
As listed below there are many different techniques to implement Android service.
https://doc.qt.io/qt-5/examples-qtandroidextras.html
In the same lib file, in the same process, BroadcastReceiver, and so on...
Can somebody explain the difference of those methods, pros and cons, principles, or...any helpful info...please