3.3.1
Added
-
The following properties have been added to the
CommerceItem
class:sku
- The item's SKUdescription
- A description of the itemurl
- A URL associated with the itemimageUrl
- A URL that points to an image of the itemcategories
- Categories associated with the item
Set these values on
CommerceItem
objects passed to theIterableApi.trackPurchase
method.
Changed
-
To resolve a breaking change introduced in Firebase Cloud Messaging version 22.0.0, version 3.3.1 of Iterable's Android SDK bumps the minimum required version of its Firebase Android dependency to 20.3.0.
If upgrading to version 3.3.1 causes your app to crash on launch, or your build to fail, add the following lines to your app's
build.gradle
file:android { ... compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } ... }
-
Updated minimum version for
firebase-messaging
to 20.3.0 to useFirebaseMessaging.getToken()
instead of deprecatedFirebaseInstanceId.getToken()
. -
Notifications will now show timestamp.