Lets say I want to launch some commercial app that came from the Google play store with my app. I've seen the code below shown as the way to do that, but I can't figure out how you know what the "com.google.android.youtube" part should be for a different app. Is the youtube part all that changes from one app to the next?
Dim in As Intent
Dim pm As PackageManager
in = pm.GetApplicationIntent("com.google.android.youtube")
StartActivity(in)
Dim in As Intent
Dim pm As PackageManager
in = pm.GetApplicationIntent("com.google.android.youtube")
StartActivity(in)