plugins - Launch URL in Android Browser From Unity -


this follow question here

i trying open url in browser in android device - modified link code -

 public void geturl(object url) {       intent intent = new intent(intent.action_view, uri.parse(url.tostring()));          startactivity(intent.createchooser(intent, "chose browser"));   } 

but unfortunately unable open browser dialog. logcat stats - checkcomponentpermission, not doing fancy in project (this test project).

any clue ?

you need go manifest

add this

 <manifest xlmns:android...>  .....  <uses-permission android:name="android.permission.internet"></uses-permission>  ......   </manifest> 

Comments

Popular posts from this blog

Line ending issue with Mercurial or Visual Studio -

tags - Jquery Mixitup plugin help prevent handlers being destroyed -

c# - Delving into the world of XML (Windows Phone) Error I dont understand (The ' ' character, hexadecimal value 0x20, cannot be included in a name.) -