Skip to content

Releases: Iterable/iterable-android-sdk

3.5.15

16 Aug 01:27
a5fc414
Compare
Choose a tag to compare

Fixed

  • Fixed JWT token refresh issues when app is in background, ensuring reliable token refresh in all app states
  • Fixed inbox metadata null check issues to prevent crashes in inbox display

Changed

  • Migrated embedded message OOTB views to use Material Design buttons for better UI consistency
  • Updated sample app Gradle configuration to use newer versions for better compatibility

3.6.0-beta3

31 Jul 12:11
Compare
Choose a tag to compare
3.6.0-beta3 Pre-release
Pre-release

Added

  • Added consent logging functionality for unknown user activation feature

Changed

  • Enhanced unknown user activation with improved criteria fetching and user ID generation logic

Fixed

  • Fixed unknown user activation to ensure criteria is fetched on foregrounding the app by default
  • Fixed unknown user ID generation to only occur once when multiple track calls are made
  • Fixed consent timestamp handling when consent is revoked

3.5.14

26 Jun 18:07
Compare
Choose a tag to compare

Fixed

  • Fixed auth token refresh when app is in background, ensuring reliable token refresh in all app states.

3.5.13

10 May 07:17
ebb029c
Compare
Choose a tag to compare

Fixed

  • SDK now retries trackPushOpen call when JWT is missing, expired or invalid, ensuring reliable push tracking after token acquisition.

3.5.12

16 Apr 15:56
cc70c54
Compare
Choose a tag to compare

Added

  • EmbeddedSessionManager methods are now public (previously library-scoped)

Fixed

  • Added timeout for crypto operations to prevent ANRs.

Disabling Keychain Encryption

The Iterable SDK provides an option to disable encryption for keychain storage. By default, encryption is enabled to securely store sensitive user data.
To disable keychain encryption, set the keychainEncryption parameter to false when initializing the SDK:

IterableConfig config = new IterableConfig.Builder()
    .setKeychainEncryption(false)  // Disable encryption for keychain storage
    .build();

IterableApi.initialize(context, apiKey, config);

Changed

  • Thanks to @MGaetan89 for modernizing the test infrastructure by replacing deprecated Robolectric APIs with AndroidX Test alternatives and removing unnecessary dependencies.

3.5.11

07 Mar 16:58
71910d7
Compare
Choose a tag to compare

Fixed

  • Fixed issue where text container shrinks when buttons are not present for the embedded OOTB views.
  • Fixed issue where crashes are occurring due to conflicts in deep link handling
  • Fixed data storage failures by adding plain text fallback when encryption fails.

Added

  • Added support for providing a list of placement ids to sync only certain placement ids.
  • support for pre-release automation

3.6.0-beta2

19 Feb 01:15
512a72c
Compare
Choose a tag to compare
3.6.0-beta2 Pre-release
Pre-release
  • This release includes fixes for the Anonymous user activation private beta:
    • Criteria is now fetched on foregrounding the app by default. This feature can be turned off setting enableForegroundCriteriaFetch flag to false.
    • anonymous user ids are only generated once when multiple track calls are made.
  • 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.10

22 Jan 01:12
8802620
Compare
Choose a tag to compare

Added

  • Added mobileFrameworkInfo configuration option to IterableConfig to identify the mobile framework (Flutter, React Native, or Native) being used with the SDK.
  • Support for push notifications with text input. Pending intent is now mutable when buttons are of text input type.

3.5.9

17 Jan 20:29
78e6ea6
Compare
Choose a tag to compare

Fixed

  • Fixed notification tracking bug that prevents SDK from receiving push notifications when system notification settings are turned off.

3.5.8 (Deprecated)

16 Jan 21:26
cfb2f48
Compare
Choose a tag to compare

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.