Skip to content

Commit 5f92a4b

Browse files
committed
Prepare for 3.1.2
1 parent 923e0be commit 5f92a4b

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1515
#### Fixed
1616
- nothing yet
1717

18+
## [3.1.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.1.2)
19+
#### Changed
20+
- Removed FirebaseInstanceIDService dependency to support newer versions of `firebase-messaging` library. This bumps the minimum required version of `firebase-messaging` to 17.4.0.
21+
22+
#### Fixed
23+
- Fixed deserialization of in-app messages stored with beta versions of the SDK
24+
1825
## [3.1.1](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.1.1)
1926
#### Added
2027
- SDK platform and version is now sent with every API request via headers

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ Congratulations, you've configured your mobile application to receive push notif
3030
Add the following dependencies to your application's **build.gradle**:
3131

3232
```groovy
33-
compile 'com.iterable:iterableapi:3.1.1'
34-
compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 9.0.0
33+
compile 'com.iterable:iterableapi:3.1.2'
34+
compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 17.4.0
3535
```
3636

3737
See [Bintray](https://bintray.com/davidtruong/maven/Iterable-SDK) for the latest version of the Iterable Android SDK.

iterableapi/build.gradle

Lines changed: 2 additions & 2 deletions
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.1\""
12+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.1.2\""
1313

1414
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1515
}
@@ -66,7 +66,7 @@ ext {
6666
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
6767
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
6868

69-
libraryVersion = '3.1.1'
69+
libraryVersion = '3.1.2'
7070

7171
developerId = 'davidtruong'
7272
developerName = 'David Truong'

0 commit comments

Comments
 (0)