diff --git a/CHANGELOG.md b/CHANGELOG.md index be6050f4d..672dd601a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## [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. + +### Note +> **⚠️ Important**: The system applies white insets by default, which may contrast with dark-themed apps. Marketers can control the visual appearance using the background overlay option in the Iterable UI to choose appropriate background colors that work well with their app's theme. ## [3.6.0] #### Added diff --git a/iterableapi-ui/build.gradle b/iterableapi-ui/build.gradle index 2cddcaa31..9817f2799 100644 --- a/iterableapi-ui/build.gradle +++ b/iterableapi-ui/build.gradle @@ -61,7 +61,7 @@ dependencies { ext { libraryName = 'iterableapi-ui' - libraryVersion = '3.6.0' + libraryVersion = '3.6.1' } if (hasProperty("mavenPublishEnabled")) { diff --git a/iterableapi/build.gradle b/iterableapi/build.gradle index ed78659b0..6e22a0937 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.0\"" + buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.6.1\"" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -89,7 +89,7 @@ dependencies { ext { libraryName = 'iterableapi' - libraryVersion = '3.6.0' + libraryVersion = '3.6.1' } if (hasProperty("mavenPublishEnabled")) { diff --git a/sample-apps/inbox-customization/app/build.gradle b/sample-apps/inbox-customization/app/build.gradle index 8eb8b03dc..1f47982de 100644 --- a/sample-apps/inbox-customization/app/build.gradle +++ b/sample-apps/inbox-customization/app/build.gradle @@ -42,8 +42,8 @@ dependencies { implementation 'androidx.navigation:navigation-ui-ktx:2.6.0' implementation 'com.google.android.material:material:1.9.0' - implementation 'com.iterable:iterableapi:3.6.0' - implementation 'com.iterable:iterableapi-ui:3.6.0' + implementation 'com.iterable:iterableapi:3.6.1' + implementation 'com.iterable:iterableapi-ui:3.6.1' implementation 'com.squareup.okhttp3:mockwebserver:4.2.2' testImplementation 'junit:junit:4.13.2'