Skip to content

Commit 9403a65

Browse files
committed
Prepare for 3.1.6
1 parent 26d3fde commit 9403a65

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1515
#### Fixed
1616
- nothing yet
1717

18+
## [3.1.6](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.1.6)
19+
#### Added
20+
- 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.
21+
22+
#### Fixed
23+
- Fixed the height of full-screen in-app messages to make sure they're not clipped by the Android navigation bar.
24+
- The SDK doesn't log an error message anymore when a custom notification channel name is not set.
25+
1826
## [3.1.5](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.1.5)
1927
#### Changed
2028
- Automatic push registration is now only done if the app is running in foreground

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Congratulations, you've configured your Iterable project to send push notificati
2222
Add the following dependencies to your application's **build.gradle**:
2323

2424
```groovy
25-
compile 'com.iterable:iterableapi:3.1.5'
25+
compile 'com.iterable:iterableapi:3.1.6'
2626
compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 17.4.0
2727
```
2828

iterableapi/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99
minSdkVersion 15
1010
targetSdkVersion 27
1111

12-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.1.5\""
12+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.1.6\""
1313

1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1515
}
@@ -71,7 +71,7 @@ ext {
7171
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
7272
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
7373

74-
libraryVersion = '3.1.5'
74+
libraryVersion = '3.1.6'
7575

7676
developerId = 'davidtruong'
7777
developerName = 'David Truong'

0 commit comments

Comments
 (0)