Skip to content

Commit

Permalink
Merge pull request #847 from Iterable/MOB-10403-Prepare-for-3.5.4
Browse files Browse the repository at this point in the history
[MOB-10403] - Prepare for 3.5.4
  • Loading branch information
Ayyanchira authored Dec 12, 2024
2 parents 4b711be + ff05ea7 commit c80a471
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
#### Changed
- nothing yet

## [3.5.4]
#### Fixed
- In-Apps are now robust with animation, resolving flickering and animation issues observed on Pixel 6 Pro with API 35.
- Fixed an issue where AuthManager was not reset correctly when logging out a user.
- Fixed `ConcurrentModificationException` leading to crashes during application launches.
- Addressed a text truncation issue in Embedded Message templates for applications targeting Android 14 and Android 15.
- Improved InboxActivity compatibility with edge-to-edge layouts, ensuring seamless handling of notches and display cutouts.

## [3.5.3]
#### Fixed
- Fixed an [issue](https://github.com/Iterable/react-native-sdk/issues/547) where the SDK would crash if the `IterableInAppMessage` object was null when consuming an in-app message.
Expand Down
2 changes: 1 addition & 1 deletion iterableapi-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {

ext {
libraryName = 'iterableapi-ui'
libraryVersion = '3.5.3'
libraryVersion = '3.5.4'
}

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 @@ -19,7 +19,7 @@ android {
minSdkVersion 16
targetSdkVersion 27

buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.3\""
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.4\""

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -85,7 +85,7 @@ dependencies {

ext {
libraryName = 'iterableapi'
libraryVersion = '3.5.3'
libraryVersion = '3.5.4'
}

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 @@ -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.5.3'
implementation 'com.iterable:iterableapi-ui:3.5.3'
implementation 'com.iterable:iterableapi:3.5.4'
implementation 'com.iterable:iterableapi-ui:3.5.4'
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'

testImplementation 'junit:junit:4.12'
Expand Down

0 comments on commit c80a471

Please sign in to comment.