I have a Corona app (Android build only), and I need to be able to launch another app that does not have an android:scheme defined in the AndroidManifest.xml, so I can’t use system.openURL.
Even though the Corona docs are clear that it doesn’t work from mobile devices, I tried (and failed) with:
os.execute("adb shell am start -n com.xx.xx/com.xx.xx.main")
- So, question is, is there a way from one Corona Android app to launch another Android app by package name?
- If not, is there a plugin that will do this?