I am trying to help a buddy create a way to start selected apps via Arduino commands over serial. Does anyone have an example project that shows how to list app apps on the device and assign them to launch via a given command? Basically looking for a launcher example code.
Check PackageManager from the Phone library. You need to first call GetInstalledPackages and then when you want to start an app you call GetApplicationIntent.
StartActivity(intent) will cause the app to start.