Skip to content

Commit b2a11d0

Browse files
authored
Merge pull request #958 from Iterable/SDK-129-Prepare-for-3.6.2
[SDK - 129] - Prepare for 3.6.2
2 parents 0d30fb3 + 36f332c commit b2a11d0

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [3.6.2]
6+
### Added
7+
- 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.
8+
- Added `IterableApi.onSDKInitialized()` callback method to subscribe to initialization completion from multiple places in your app.
9+
- 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).
10+
511
## [3.6.1]
612
### Added
713
- 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.

iterableapi-ui/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ dependencies {
6161

6262
ext {
6363
libraryName = 'iterableapi-ui'
64-
libraryVersion = '3.6.1'
64+
libraryVersion = '3.6.2'
6565
}
6666

6767
if (hasProperty("mavenPublishEnabled")) {

iterableapi/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ android {
2121
minSdkVersion 21
2222
targetSdkVersion 34
2323

24-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.6.1\""
24+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.6.2\""
2525

2626
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2727
}
@@ -89,7 +89,7 @@ dependencies {
8989

9090
ext {
9191
libraryName = 'iterableapi'
92-
libraryVersion = '3.6.1'
92+
libraryVersion = '3.6.2'
9393
}
9494

9595
if (hasProperty("mavenPublishEnabled")) {

0 commit comments

Comments
 (0)