trying to use Application.OpenURL on android

but it doesn not work! i have searching forums but found nothing except that it should work…is it possible that i need to
allow that in manifest file?

thank you!

I spent hours puzzling over this.

The line:

Application.OpenURL(“www.dphsw.co.uk”);

worked in PC but not in android. However, the line:

Application.OpenURL(“http://www.dphsw.co.uk”);

worked on Android too. And while it needed internet permission, doing it in the custom manifest in the plugins folder didn’t seem to work - only changing ‘Internet Access’ from ‘Auto’ to ‘Require’ in the Android Player settings seemed to work.

Yes, that did the trick for me too. Just adding “http:// YOURADRESSHERE”

Add https or http to make it work.

for(int i =0 ; i < Input.touchCount ; i++)
{
if(Like.enabled && Like.HitTest(Input.GetTouch(0).position))
{
Application.OpenURL(“Impressol Games”);
}
}

Its working in my game.