[Vuejs]-How can I open default browser in mobile webview

0👍

Launching native default browser
In native application we can launch the system default browser by sending implicit Intent.

Uri uri = Uri.parse("https://www.google.com");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

For your reference:https://developer.android.com/reference/android/content/Intent

Leave a comment