I’m trying to open up another application on my android device. I’ve searched for weeks about how to do this via a plugin and there is a shockingly low amount of information on how to do this. Even the unity docs are pretty terrible.
However, I have discovered the Application.OpenURL which is letting me do part of my required functionality natively. Right now I have the following line of code:
Application.OpenURL ("market://search?q=com.android.chrome");
This is letting me search the play store for an app (in the above case, Chrome) but I was wondering if anyone knew the code I had to put in so I open up chrome as opposed to simply looking for it on the app store?