I am trying to launch other applications on touch / click events. So far
I am successful in doing so with the below code snippetString
packagename =
"";startActivity(getPackageManager().getLaunchIntentForPackage(packagename));This
works for oculus ho...
Check this out -
https://forums.oculus.com/developer/discussion/43270/unity-how-to-open-samsung-internet-app-from-my-unity-appYou
maybe able to modify the approach for any VR App in general
I tried the below code snippetString packagename =
"com.sec.android.app.svrbrowser";startActivity(getPackageManager().getLaunchIntentForPackage(packagename));The
browser crashes on start up.I tried to open the Samsung Internet for
GearVR in developer...
@vrdaveb: The above code does not work with
com.sec.android.app.svrbrowserI use a simplified version String
packagename =
"";startActivity(getPackageManager().getLaunchIntentForPackage(packagename));