Complete
over 2 years ago

MODUS-3437

Cannot Reproduce

Other app cannot be started on Vivoactive3 via Sys.exitTo

A got a lot of reports (since already more than one year) that another app cannot be started on the Vivoactive 3. The same code (see example below) works fine on other devices.

I tried to use the manifest-id as well as the store-id. Both does not work.

try {
  // start selected app (via manifest-id)
  Sys.exitTo(
    new Sys.Intent(
      "manifest-id://" + MANIFEST_ID[nAppIndex],
      {"arg"=>""}
      )
    );
}
catch (exception) {
  try {
    // start selected app (via app store-id)
    Sys.exitTo(
      new Sys.Intent(
        "store-id://" + APP_STORE_ID[nAppIndex],
        {"arg"=>""}
      )
    );
  }
  catch (exception) {
    errorMsg = exception.getErrorMessage( );
    Sys.println(errorMsg);
  }
}