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 am having the same issue. It seams to work, opens the market/play store, but then it stalls After a while crashes. Please help.

Application.OpenURL() is not working in android but working in pc and in webplayer

what is your link

4 Answers

4

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”

I am also struggling with this problem, How to solve it.for me, it runs perfectly on PC but not works on Android devices.Can you explain the steps some wat detailed manner? Can you explain in step by step process? please I am struggling a lot with this please help me

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.