Skip to content

Commit

Permalink
Prepare for 3.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
vbabenkoru committed Feb 13, 2020
1 parent 26d3fde commit 9403a65
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
4 changes: 2 additions & 2 deletions iterableapi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit 9403a65

Please sign in to comment.