We are using the Intercom Android SDK in our android app to provide customer support. Specifically, we are presenting the Messages space using the following code in Kotlin:
Intercom.client().present(space = IntercomSpace.Messages)
We're interested in knowing if there's a callback or event triggered when the user dismisses the Messages space by clicking the back button. Our application has specific action that need to be executed when the user returns to our UI, and it would be extremely useful to have this kind of event available.
I noticed that on the iOS SDK, there are IntercomWindowWillHideNotification
and IntercomWindowDidHideNotification
callbacks for similar functionality. Are these iOS callbacks triggered when the Intercom message space is closed? If so, is there an equivalent on the Android SDK?
If such functionality is not currently available for Android, are there plans to introduce this feature in a future update?