Fixed
- Fixed an issue where the SDK would crash if the
IterableInAppMessage
object was null when consuming an in-app message.
Changed
- The SDK now provides more insight into JWT refresh failures, to help you take appropriate action in your application code. Now, when a JWT refresh fails (for any of various reasons), the SDK calls
onAuthFailure(AuthFailure authFailure)
on theIterableAuthHandler
instance you provided to the SDK at initialization. TheAuthFailure
object provides more information about the failure. onAuthFailure(AuthFailure authFailure)
replacesonTokenRegistrationFailed(Throwable object)
, so if you've implemented that method you'll need to update your application code.- For more information, see the documentation for Iterable's Android SDK.