diff --git a/CHANGELOG.md b/CHANGELOG.md index ca460dc2f..e3c54f005 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). #### Fixed - nothing yet +## [3.4.14](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.14) +#### Added +- `IterableInAppManager.setRead` now accepts `IterableHelper.FailureHandler failureHandler` + +#### Fixed +- Fixes an issue where `IterableInAppManager.removeMessage` caused build failure in React Native SDK pointing to legacy method calls. +- Fixes an issue where custom action handlers were not invoked when tapping on push notification when the app is in background. + ## [3.4.13](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.13) #### Added - `IterableInAppManager.setRead` now accepts `IterableHelper.SuccessHandler successHandler`. diff --git a/iterableapi-ui/build.gradle b/iterableapi-ui/build.gradle index d784da2f8..5268ffe15 100644 --- a/iterableapi-ui/build.gradle +++ b/iterableapi-ui/build.gradle @@ -48,7 +48,7 @@ ext { siteUrl = 'https://github.com/Iterable/iterable-android-sdk' gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git' - libraryVersion = '3.4.13' + libraryVersion = '3.4.14' developerId = 'davidtruong' developerName = 'David Truong' diff --git a/iterableapi/build.gradle b/iterableapi/build.gradle index 8fcb4f2f7..b57f4ccb3 100644 --- a/iterableapi/build.gradle +++ b/iterableapi/build.gradle @@ -11,7 +11,7 @@ android { minSdkVersion 16 targetSdkVersion 27 - buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.4.13\"" + buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.4.14\"" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -75,7 +75,7 @@ ext { siteUrl = 'https://github.com/Iterable/iterable-android-sdk' gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git' - libraryVersion = '3.4.13' + libraryVersion = '3.4.14' developerId = 'davidtruong' developerName = 'David Truong' diff --git a/sample-apps/inbox-customization/app/build.gradle b/sample-apps/inbox-customization/app/build.gradle index 565feaf9f..3bc8a1568 100644 --- a/sample-apps/inbox-customization/app/build.gradle +++ b/sample-apps/inbox-customization/app/build.gradle @@ -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.4.13' - implementation 'com.iterable:iterableapi-ui:3.4.13' + implementation 'com.iterable:iterableapi:3.4.14' + implementation 'com.iterable:iterableapi-ui:3.4.14' implementation 'com.squareup.okhttp3:mockwebserver:4.2.2' testImplementation 'junit:junit:4.12'