Using React Native SDK, I see this error each time I open the app. Here is my code
Intercom.loginUserWithUserAttributes({ userId: `${authData.id}` }).then(() => {
this.updateUser(authData, onUpdate)
})
Even when I wrap this inside logout then callback, I get the same error.
Intercom.logout().then(() => {
Intercom.loginUserWithUserAttributes({ userId: `${authData.id}` }).then(() => {
this.updateUser(authData, onUpdate)
})
})
Note: This happens only on Android.