i want to open another installed app such as Pandora from my app.
Here is the code:
Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("Pandora");
startActivity(LaunchIntent);
The above crashes my code, can someone provide code correction please?
Thank you in advance.
I think what you want to do is call the application by its packet name (you need to figure that out, but that should be easy)
That should open the other application if it is installed.