Skip to content

Instantly share code, notes, and snippets.

@jack-webb
Created June 1, 2023 10:41
Show Gist options
  • Save jack-webb/83de91289a9723d60ebc79ae5ab87a11 to your computer and use it in GitHub Desktop.
Save jack-webb/83de91289a9723d60ebc79ae5ab87a11 to your computer and use it in GitHub Desktop.
Opening a URI with ACTION_VIEW
val url = Uri.parse("https://www.asos.com/")
val browserIntent = Intent(Intent.ACTION_VIEW, url))
startActivity(browserIntent)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment