标签: android qt apk qprocess
我有一个需要执行另一个应用程序(B)的QT Android应用程序(A)。 B应用程序打包在A APK中。
QProcess *process = new QProcess(this); QString program ="B"; process->start(program, arguments);
必须在程序变量上调用B?
当应用程序移植到iOS时,是否需要进行任何更改?