Skip to content

Commit c80a471

Browse files
authored
Merge pull request #847 from Iterable/MOB-10403-Prepare-for-3.5.4
[MOB-10403] - Prepare for 3.5.4
2 parents 4b711be + ff05ea7 commit c80a471

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1313
#### Changed
1414
- nothing yet
1515

16+
## [3.5.4]
17+
#### Fixed
18+
- In-Apps are now robust with animation, resolving flickering and animation issues observed on Pixel 6 Pro with API 35.
19+
- Fixed an issue where AuthManager was not reset correctly when logging out a user.
20+
- Fixed `ConcurrentModificationException` leading to crashes during application launches.
21+
- Addressed a text truncation issue in Embedded Message templates for applications targeting Android 14 and Android 15.
22+
- Improved InboxActivity compatibility with edge-to-edge layouts, ensuring seamless handling of notches and display cutouts.
23+
1624
## [3.5.3]
1725
#### Fixed
1826
- 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.

iterableapi-ui/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dependencies {
5151

5252
ext {
5353
libraryName = 'iterableapi-ui'
54-
libraryVersion = '3.5.3'
54+
libraryVersion = '3.5.4'
5555
}
5656

5757
if (hasProperty("mavenPublishEnabled")) {

iterableapi/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ android {
1919
minSdkVersion 16
2020
targetSdkVersion 27
2121

22-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.3\""
22+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.4\""
2323

2424
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2525
}
@@ -85,7 +85,7 @@ dependencies {
8585

8686
ext {
8787
libraryName = 'iterableapi'
88-
libraryVersion = '3.5.3'
88+
libraryVersion = '3.5.4'
8989
}
9090

9191
if (hasProperty("mavenPublishEnabled")) {

sample-apps/inbox-customization/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ dependencies {
3333
implementation 'androidx.navigation:navigation-ui-ktx:2.1.0'
3434
implementation 'com.google.android.material:material:1.1.0'
3535

36-
implementation 'com.iterable:iterableapi:3.5.3'
37-
implementation 'com.iterable:iterableapi-ui:3.5.3'
36+
implementation 'com.iterable:iterableapi:3.5.4'
37+
implementation 'com.iterable:iterableapi-ui:3.5.4'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)