diff --git a/CHANGELOG.md b/CHANGELOG.md index 3af8387e4..57cc38db2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). #### Fixed - nothing yet +## [3.1.6](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.1.6) +#### 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](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.1.5) #### Changed - Automatic push registration is now only done if the app is running in foreground diff --git a/README.md b/README.md index c8665b518..81cacfe42 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Congratulations, you've configured your Iterable project to send push notificati Add the following dependencies to your application's **build.gradle**: ```groovy -compile 'com.iterable:iterableapi:3.1.5' +compile 'com.iterable:iterableapi:3.1.6' compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 17.4.0 ``` diff --git a/iterableapi/build.gradle b/iterableapi/build.gradle index 17d5e293c..2434ad904 100644 --- a/iterableapi/build.gradle +++ b/iterableapi/build.gradle @@ -9,7 +9,7 @@ android { minSdkVersion 15 targetSdkVersion 27 - buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.1.5\"" + buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.1.6\"" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -71,7 +71,7 @@ ext { siteUrl = 'https://github.com/Iterable/iterable-android-sdk' gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git' - libraryVersion = '3.1.5' + libraryVersion = '3.1.6' developerId = 'davidtruong' developerName = 'David Truong'