Releases: Iterable/iterable-android-sdk
3.5.10
3.5.9
3.5.8 (Deprecated)
Deprecation notice
This version of the SDK is deprecated. Do not use it.
This version of Iterable's Android SDK includes changes to help keep a user's Iterable profile in sync with their physical device's push settings for your app (by keeping the device's notificationsEnabled
flag up-to-date in Iterable).
However, it also includes a bug that can prevent the SDK from receiving silent push notifications, which in turn can prevent end users from receiving expected in-app and embedded messages.
If you've started building on this version of the SDK, please roll back to a previous version while we work on a fix.
Fixed
- Fixed issue where notifications were being disabled even when auto push registration was turned off.
3.5.7 (Deprecated)
Deprecation notice
This version of the SDK is deprecated. Do not use it.
This version of Iterable's Android SDK includes changes to help keep a user's Iterable profile in sync with their physical device's push settings for your app (by keeping the device's notificationsEnabled
flag up-to-date in Iterable).
However, it also includes a bug that can prevent the SDK from receiving silent push notifications, which in turn can prevent end users from receiving expected in-app and embedded messages.
If you've started building on this version of the SDK, please roll back to a previous version while we work on a fix.
Added
- Support for JSON-only in-app messages. JSON-only messages are now handled by the
onNewInApp
handler and consumed after retrieval. - Enhanced notification state tracking, to align with system notification permissions changes.
3.5.6
3.5.5
Added
- Added
IterableDecryptionFailureHandler
interface to handle decryption failures of PII information.
Removed
- Removed
encryptionEnforced
parameter fromIterableConfig
as data is now always encoded for security
Changed
- Migrated from EncryptedSharedPreferences to regular SharedPreferences to prevent ANRs while EncryptedSharedPreferences was created on the main thread. We are now using our own encryption library to encrypt PII information before storing it in SharedPreferences.
3.5.4
Fixed
- In-Apps are now robust with animation, resolving flickering and animation issues observed on Pixel 6 Pro with API 35.
- Fixed an issue where AuthManager was not reset correctly when logging out a user.
- Fixed
ConcurrentModificationException
leading to crashes during application launches. - Addressed a text truncation issue in Embedded Message templates for applications targeting Android 14 and Android 15.
- Improved InboxActivity compatibility with edge-to-edge layouts, ensuring seamless handling of notches and display cutouts.
3.6.0-beta1
- This release includes initial support for Anonymous user activation, a feature that allows marketers to convert valuable visitors into customers. With this feature, the SDK can:
- Fetch anonymous profile creation criteria from your Iterable project, and then automatically create Iterable user profiles for anonymous users who meet these criteria.
- Save information about a user's previous interactions with your application to their anonymous profile, after it's created.
- Display personalized messages for anonymous users (in-app, push, and embedded messages).
- Merge anonymous profiles into an existing, known user profiles (when needed).
- Anonymous user activation is currently in private beta. If you'd like to learn more about it or discuss using it, talk to your Iterable customer success manager (who can also provide detailed documentation).
3.5.3
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.
3.5.2
Added
- Introducing a new method
setAuthRetryPolicy
inIterableConfig
to set the retry policy for JWT token refresh. - You can now use method -
pauseAuthRetries(boolean pauseRetry)
to pause or resume the JWT token refresh retries. trackPurchase
method now acceptsattributionInfo
parameter to track purchase with attribution information.
Fixed
- Embedded manager listeners are active only if feature is enabled