Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion iterableapi-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencies {

ext {
libraryName = 'iterableapi-ui'
libraryVersion = '3.6.0'
libraryVersion = '3.6.1'
}

if (hasProperty("mavenPublishEnabled")) {
Expand Down
4 changes: 2 additions & 2 deletions iterableapi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down Expand Up @@ -89,7 +89,7 @@ dependencies {

ext {
libraryName = 'iterableapi'
libraryVersion = '3.6.0'
libraryVersion = '3.6.1'
}

if (hasProperty("mavenPublishEnabled")) {
Expand Down
4 changes: 2 additions & 2 deletions sample-apps/inbox-customization/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Loading