diff --git a/CHANGELOG.md b/CHANGELOG.md index d647aa29c..633d4b18e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). #### Fixed - nothing yet +## [3.4.6](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.6) +#### Fixed +- Fixed an issue where configurations would not be loaded. `config` in `IterableApi` is now accessed through sharedInstance. + ## [3.4.5](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.5) #### Fixed - Fixed in-apps disappearing due to the functionality of loading HTML changing in Android SDK version 29+. diff --git a/iterableapi-ui/build.gradle b/iterableapi-ui/build.gradle index 4e1b8e56d..c8d419747 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.5' + libraryVersion = '3.4.6' developerId = 'davidtruong' developerName = 'David Truong' diff --git a/iterableapi/build.gradle b/iterableapi/build.gradle index cddd822d4..9c8d8d7c3 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.5\"" + buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.4.6\"" 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.5' + libraryVersion = '3.4.6' developerId = 'davidtruong' developerName = 'David Truong' diff --git a/sample-apps/inbox-customization/app/build.gradle b/sample-apps/inbox-customization/app/build.gradle index eaee362b2..28cca9bf5 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.5' - implementation 'com.iterable:iterableapi-ui:3.4.5' + implementation 'com.iterable:iterableapi:3.4.6' + implementation 'com.iterable:iterableapi-ui:3.4.6' implementation 'com.squareup.okhttp3:mockwebserver:4.2.2' testImplementation 'junit:junit:4.12'