Deepak Goyal
Deepak Goyal
@Samo8 the latest version of `intercom_flutter` is `5.0.0`. In this version, Intercom iOS SDK is updated with version 10.0.2. Could you please try version `5.0.0`?
@vitable-dev the version `intercom_flutter: 7.2.0` is released recently on May 12, 2022, which uses Intercom Android SDK version [12.2.2](https://github.com/intercom/intercom-android/blob/master/CHANGELOG.md#1222) Does this happens only with a version `7.2.0`? or with older...
The methods `loginIdentifiedUser`, `loginUnidentifiedUser` are used to log in the user in Intercom. These methods have a parameter called `statusCallback` which was added in SDK version 12.1.0. So you can...
@vitable-dev I tested the `loginUnidentifiedUser` method. ```dart TextButton( onPressed: () async { await Intercom.instance.loginUnidentifiedUser( statusCallback: IntercomStatusCallback( onSuccess: () { print("Success"); }, onFailure: (error) { print(error.toString()); }, ), ); print("Statement after...
Related issue https://github.com/v3rm0n/intercom_flutter/issues/238
I have already reported the issue to Intercom and they verified that it is an issue in the current SDK version. But this will take time to get resolved. ```...
@Shatha-Naami I believe iOS also will show the bottom banner if the app is in the foreground. could you please share the reproducible sample? Maybe video recording of the issue...
do you have this parameter `IntercomAutoIntegratePushNotifications` in info.plist? Make sure this is not added or if present then it must be with the value `YES`. https://developers.intercom.com/installing-intercom/docs/ios-push-notifications#step-4-handling-intercom-push-notifications
@FilledStacks do you use userHash to register the user in Intercom on your website?
@FilledStacks how do you register the user in your website? Please share the code. Make sure you are using the same app id for the website and flutter app.