When launching a share intent, is it possible to k...
# android
a
When launching a share intent, is it possible to know when it is complete? I want to move on after the user has seen the share dialog, but not until it has been dismissed
a
yes, add a PendingIntent with this bundle key to the extras bundle of the intent you create with Intent.createChooser: https://developer.android.com/reference/android/content/Intent?hl=en#EXTRA_CHOSEN_COMPONENT_INTENT_SENDER
🙏 1
a
Amazing, thank you!!