Skip to content

Instantly share code, notes, and snippets.

@fredchung
Last active September 7, 2020 06:03
Show Gist options
  • Save fredchung/dc3a705c0bacbd990e876464cbbe02bd to your computer and use it in GitHub Desktop.
Save fredchung/dc3a705c0bacbd990e876464cbbe02bd to your computer and use it in GitHub Desktop.
Sharing content Uri's with other apps.
val shareIntent = Intent(Intent.ACTION_VIEW).apply {
flags = Intent.FLAG_GRANT_READ_URI_PERMISSION
data = // Content Uri to be shared with others
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment