Skip to content

Releases: Iterable/iterable-android-sdk

3.1.6

13 Feb 03:33
Compare
Choose a tag to compare

Added

  • Added a new static method to IterableFirebaseMessagingService: isGhostPush. Use this method to determine whether a Firebase message is an Iterable ghost push or silent push message.

Fixed

  • Fixed the height of full-screen in-app messages to make sure they're not clipped by the Android navigation bar.
  • The SDK doesn't log an error message anymore when a custom notification channel name is not set.

3.1.5

16 Dec 21:34
Compare
Choose a tag to compare

Changed

  • Automatic push registration is now only done if the app is running in foreground

3.2.0-beta1

15 Oct 22:28
Compare
Choose a tag to compare
3.2.0-beta1 Pre-release
Pre-release

IMPORTANT

  • This feature must be enabled for your project before you can use it. Please contact your CSM if you want to use this beta version.
  • Beta versions of this SDK are subject to Iterable's
    Beta Mobile SDK Terms of Service.

Installation

Beta installation instructions

Added

Changed

  • When pushIntegrationName is not set on IterableConfig, the SDK now defaults it to the app's package name.
    If you've set up your push integration with the new Mobile Apps UI, you don't have to specify pushIntegrationName in the SDK anymore.

3.1.4

11 Oct 00:28
Compare
Choose a tag to compare

Added

  • Push notifications now also display image thumbnails when collapsed

Changed

  • Connection timeout for GET requests is now 3 seconds, to match other request timeouts
  • Api-Key header is now also used for GET requests

Fixed

  • Fixed possible exceptions when an in-app message is not on the screen when it's being resized

3.1.3

06 Aug 01:48
Compare
Choose a tag to compare

Fixed

  • Fixed a NullPointerException that could occur in some cases when trying to get Advertising ID

3.1.2

10 Jul 23:02
Compare
Choose a tag to compare

Changed

  • Removed FirebaseInstanceIDService dependency to support newer versions of firebase-messaging library. This bumps the minimum required version of firebase-messaging to 17.4.0.

Fixed

  • Fixed deserialization of in-app messages stored with beta versions of the SDK

3.1.1

21 Jun 22:57
Compare
Choose a tag to compare

Added

  • SDK platform and version is now sent with every API request via headers

Changed

  • Api-Key header name is now used for the API key instead of api_key, for consistency with HTTP header naming conventions

Fixed

  • Fixed an issue that could cause the SDK not to persist in-app message properties (processed/consumed)
  • Fixed a NullPointerException that could occur in IterableActivityMonitor if it was initialized after application start

3.1.0

10 Jun 18:59
Compare
Choose a tag to compare

Added

BREAKING CHANGES

The in-app messaging implementation has been significantly improved:

  • The SDK now maintains a local queue and keep it in sync with the server-side queue automatically
  • Iterable servers now notify apps via silent push messages whenever the in-app message queue is updated
  • In-app messages are shown by default whenever they arrive

Check the In-app messages documentation for more details.

Please refer to the Migration guide if you've been using in-app messages in your app and updating a newer version of the SDK.

Changed

  • BREAKING CHANGE: Added IterableContext argument to IterableCustomActionHandler

    The new method signature is:

    boolean handleIterableCustomAction(IterableAction action, IterableActionContext actionContext)

    actionContext can be used to determine where the call is calling from - push message, in-app message, or a deep link.

  • The SDK now sets notificationsEnabled flag on the device to indicate whether notifications are enabled for the app

  • Changes to in-app links:

    • action:// URL scheme is now reserved for app-specific custom actions.
      When a user clicks on a link with href = action://myCustomAction, the SDK calls IterableCustomActionHandler.handleIterableCustomAction with action type set to myCustomAction.
    • iterable:// URL scheme is now reserved for actions handled by the SDK (i.e. future versions of the SDK may define iterable://delete as an action to delete the in-app message)
    • itbl:// links will keep working as custom actions (similar to action:// URLs) for backwards compatibility, but itbl:// namespace is deprecated in favor of action://.
    • Migration: if you've been using itbl:// links in the past, please update your templates with action:// instead
  • Connect timeout for deeplink resolution is now 3 seconds

Removed

  • spawnInAppNotification has been removed. Please refer to the in-app migration guide (above)

Fixed

  • Fixed the URL parameter in inAppClick event

3.0.9

28 May 21:30
Compare
Choose a tag to compare

Changed

  • The SDK now passes preferUserId flag to create a user by userId if it does not exist when using userId to identify the user
  • Incresed the deep link timeout to 3 seconds

Fixed

  • Fixed InAppClick event parameter to properly track the URL that was clicked
  • Fixed a NullPointerException when an in-app message was being shown while the app was in background

3.1.0-beta4

13 May 18:53
0f03656
Compare
Choose a tag to compare
3.1.0-beta4 Pre-release
Pre-release

IMPORTANT

  • Please talk to your Iterable Customer Success Manager if you want to try the beta version of the SDK, as we'll need to enable certain settings on the server for it to work as expected.

Terms of Service

Changed

  • The scheme for actions handled by the SDK is now iterable://. itbl:// links will keep working as custom actions (similar to action:// URLs) for backwards compatibility, but itbl:// namespace is deprecated in favor of action://.

More Information