diff --git a/CHANGELOG.md b/CHANGELOG.md index 633d4b18e..08d7af549 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). #### Fixed - nothing yet +- +## [3.4.7](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.7) +#### Added +- This release makes offline events processing available to all Iterable customers who'd like to use it — just ask your customer success manager to enable it for your account. Offline events processing saves a local copy of events triggered in your app while the device is offline (up to 1000 events). When a connection is re-established and your app is in the foreground, the events will be sent to Iterable. For more information, read [Offline events processing](https://support.iterable.com/hc/articles/360035395671#offline-events-processing). ## [3.4.6](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.6) #### Fixed diff --git a/iterableapi-ui/build.gradle b/iterableapi-ui/build.gradle index c8d419747..57abb89b4 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.6' + libraryVersion = '3.4.7' developerId = 'davidtruong' developerName = 'David Truong' diff --git a/iterableapi/build.gradle b/iterableapi/build.gradle index 9c8d8d7c3..d4460df88 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.6\"" + buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.4.7\"" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -71,7 +71,7 @@ ext { siteUrl = 'https://github.com/Iterable/iterable-android-sdk' gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git' - libraryVersion = '3.4.6' + libraryVersion = '3.4.7' developerId = 'davidtruong' developerName = 'David Truong' diff --git a/sample-apps/inbox-customization/app/build.gradle b/sample-apps/inbox-customization/app/build.gradle index 28cca9bf5..2fd172949 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.6' - implementation 'com.iterable:iterableapi-ui:3.4.6' + implementation 'com.iterable:iterableapi:3.4.7' + implementation 'com.iterable:iterableapi-ui:3.4.7' implementation 'com.squareup.okhttp3:mockwebserver:4.2.2' testImplementation 'junit:junit:4.12'