Skip to content

Commit

Permalink
Prepare for 3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vbabenkoru committed Jul 10, 2019
1 parent 923e0be commit 5f92a4b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
#### Fixed
- nothing yet

## [3.1.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.1.2)
#### Changed
- Removed FirebaseInstanceIDService dependency to support newer versions of `firebase-messaging` library. This bumps the minimum required version of `firebase-messaging` to 17.4.0.

#### Fixed
- Fixed deserialization of in-app messages stored with beta versions of the SDK

## [3.1.1](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.1.1)
#### Added
- SDK platform and version is now sent with every API request via headers
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Congratulations, you've configured your mobile application to receive push notif
Add the following dependencies to your application's **build.gradle**:

```groovy
compile 'com.iterable:iterableapi:3.1.1'
compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 9.0.0
compile 'com.iterable:iterableapi:3.1.2'
compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 17.4.0
```

See [Bintray](https://bintray.com/davidtruong/maven/Iterable-SDK) for the latest version of the Iterable Android SDK.
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.1\""
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.1.2\""

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -66,7 +66,7 @@ ext {
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'

libraryVersion = '3.1.1'
libraryVersion = '3.1.2'

developerId = 'davidtruong'
developerName = 'David Truong'
Expand Down

0 comments on commit 5f92a4b

Please sign in to comment.