Skip to content

Commit

Permalink
Prepare for 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayyanchira committed Apr 7, 2020
1 parent 81f9fa9 commit 17eb017
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
#### Fixed
- nothing yet

## [3.2.2]

#### Fixed
- Fixed an ArrayIndexOutOfBoundsException in IterableRequest which is thrown from inside HttpUrlConnection/OkHttp module in certain Android firmwares

## [3.2.1](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.2.1)
#### Added
- Added support for new parameters - `subscribedMessageTypeIDs`, `campaignId`, `templateId` in `updateSubscriptions` method.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ tokens.

Add the following dependencies to your application's **build.gradle**:

- `implementation 'com.iterable:iterableapi:3.2.1'`
- `implementation 'com.iterable:iterableapi-ui:3.2.1' // Optional, contains Inbox UI components`
- `implementation 'com.iterable:iterableapi:3.2.2'`
- `implementation 'com.iterable:iterableapi-ui:3.2.2' // Optional, contains Inbox UI components`
- `implementation '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
Expand Down
2 changes: 1 addition & 1 deletion iterableapi-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ext {
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'

libraryVersion = '3.2.1'
libraryVersion = '3.2.2'

developerId = 'davidtruong'
developerName = 'David Truong'
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.2.1\""
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.2.2\""

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

libraryVersion = '3.2.1'
libraryVersion = '3.2.2'

developerId = 'davidtruong'
developerName = 'David Truong'
Expand Down
4 changes: 2 additions & 2 deletions sample-apps/inbox-customization/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ dependencies {
implementation 'androidx.navigation:navigation-ui-ktx:2.1.0'
implementation 'com.google.android.material:material:1.1.0'

implementation 'com.iterable:iterableapi:3.2.1'
implementation 'com.iterable:iterableapi-ui:3.2.1'
implementation 'com.iterable:iterableapi:3.2.2'
implementation 'com.iterable:iterableapi-ui:3.2.2'
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'

testImplementation 'junit:junit:4.12'
Expand Down

0 comments on commit 17eb017

Please sign in to comment.