Problems with Open-Source Downloads read https://www.qt.io/blog/problem-with-open-source-downloads and https://forum.qt.io/post/638946
Delegating tasks to other apps (as in Android intents)
-
Hi,
I am looking for pointers how I can delegate tasks to other apps like in Android where I can say in my app "I want to book a table, please Android, open an app where the user can do this"
There is the Qt ServiceFramework but I haven't see any possiblity to make the service opening an app with UI. Is the ServiceFramework comparable to the intents system?
-
I currently try to "solve" this through Plugins
Having QMLs as a frontend, wich are using plugins (written in C++ -> interfaces to hardware). As soon as I update a plugin, every QML using it, gets "updated".
Now this is getting quite near Androids activities.