diff --git a/CHANGELOG.md b/CHANGELOG.md index 672dd601a..1426ae7aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [3.6.2] +### Added +- Added background initialization support to prevent ANRs during app startup. Use `IterableApi.initializeInBackground()` instead of `initialize()` to run initialization on a background thread while automatically queuing API calls until ready. See README for implementation details. +- Added `IterableApi.onSDKInitialized()` callback method to subscribe to initialization completion from multiple places in your app. +- Added `setWebViewBaseUrl()` configuration option to `IterableConfig` to support CORS for self-hosted custom fonts and external resources in WebView-based messages (in-app, inbox, embedded messages). + ## [3.6.1] ### Added - Added edge-to-edge support for in-app messages to ensure proper display on devices with notches, cutouts, and system bars. Test your in-app messages on various devices to ensure optimal display. diff --git a/iterableapi-ui/build.gradle b/iterableapi-ui/build.gradle index 9817f2799..4005a08fe 100644 --- a/iterableapi-ui/build.gradle +++ b/iterableapi-ui/build.gradle @@ -61,7 +61,7 @@ dependencies { ext { libraryName = 'iterableapi-ui' - libraryVersion = '3.6.1' + libraryVersion = '3.6.2' } if (hasProperty("mavenPublishEnabled")) { diff --git a/iterableapi/build.gradle b/iterableapi/build.gradle index 6e22a0937..6aa1e78e6 100644 --- a/iterableapi/build.gradle +++ b/iterableapi/build.gradle @@ -21,7 +21,7 @@ android { minSdkVersion 21 targetSdkVersion 34 - buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.6.1\"" + buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.6.2\"" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -89,7 +89,7 @@ dependencies { ext { libraryName = 'iterableapi' - libraryVersion = '3.6.1' + libraryVersion = '3.6.2' } if (hasProperty("mavenPublishEnabled")) {