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
Post a Comment