Skip to content

Instantly share code, notes, and snippets.

@5AbhishekSaxena
Created December 14, 2021 14:30
Show Gist options
  • Save 5AbhishekSaxena/62990bd214a77165902b2d68c1e57102 to your computer and use it in GitHub Desktop.
Save 5AbhishekSaxena/62990bd214a77165902b2d68c1e57102 to your computer and use it in GitHub Desktop.
Sharing intent utility function to start activity using intent.
fun shareIntent(context: Context, sharingIntent: SharingIntent) {
val intent = sharingIntent.prepareIntent()
val shareIntent = Intent.createChooser(intent, sharingIntent.intentChooserTitle)
context.startActivity(shareIntent)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment