File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed
sample-apps/inbox-customization/app Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
55## [ Unreleased]
66
7+ ## [ 3.5.15]
8+ ### Fixed
9+ - Fixed JWT token refresh issues when app is in background, ensuring reliable token refresh in all app states
10+ - Fixed inbox metadata null check issues to prevent crashes in inbox display
11+
12+ ### Changed
13+ - Migrated embedded message OOTB views to use Material Design buttons for better UI consistency
14+ - Updated sample app Gradle configuration to use newer versions for better compatibility
15+
716## [ 3.5.14]
817### Fixed
918- Fixed auth token refresh when app is in background, ensuring reliable token refresh in all app states.
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ dependencies {
6161
6262ext {
6363 libraryName = ' iterableapi-ui'
64- libraryVersion = ' 3.5.14 '
64+ libraryVersion = ' 3.5.15 '
6565}
6666
6767if (hasProperty(" mavenPublishEnabled" )) {
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ android {
2121 minSdkVersion 21
2222 targetSdkVersion 34
2323
24- buildConfigField " String" , " ITERABLE_SDK_VERSION" , " \" 3.5.14 \" "
24+ buildConfigField " String" , " ITERABLE_SDK_VERSION" , " \" 3.5.15 \" "
2525
2626 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
2727 }
@@ -88,7 +88,7 @@ dependencies {
8888
8989ext {
9090 libraryName = ' iterableapi'
91- libraryVersion = ' 3.5.14 '
91+ libraryVersion = ' 3.5.15 '
9292}
9393
9494if (hasProperty(" mavenPublishEnabled" )) {
Original file line number Diff line number Diff line change @@ -42,8 +42,8 @@ dependencies {
4242 implementation ' androidx.navigation:navigation-ui-ktx:2.6.0'
4343 implementation ' com.google.android.material:material:1.9.0'
4444
45- implementation ' com.iterable:iterableapi:3.5.14 '
46- implementation ' com.iterable:iterableapi-ui:3.5.14 '
45+ implementation ' com.iterable:iterableapi:3.5.15 '
46+ implementation ' com.iterable:iterableapi-ui:3.5.15 '
4747 implementation ' com.squareup.okhttp3:mockwebserver:4.2.2'
4848
4949 testImplementation ' junit:junit:4.13.2'
You can’t perform that action at this time.
0 commit comments