I've a QT Android application (A) that needs to execute another application (B). The B application is packaged inside the A APK.
Qt Code:
  1. process = new QProcess(this);
  2. QString program ="B";
  3. process->start(program, arguments);
To copy to clipboard, switch view to plain text mode 

What must to put on program variable to call B?

When the application was ported to iOS, will require any change?