File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed
sample-apps/inbox-customization/app Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 3.5.16]
8
+ ### Added
9
+ - Added offline support for disable push API requests, allowing requests to be queued and processed when network connectivity is restored
10
+
11
+ ### Fixed
12
+ - Fixed KeyStoreException crash on Nexus 5 devices by adding proper error handling for SecretKeyEntry operations
13
+ - Added graceful fallback to plaintext storage when encryption initialization fails
14
+
7
15
## [ 3.5.15]
8
16
### Fixed
9
17
- Fixed JWT token refresh issues 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 {
61
61
62
62
ext {
63
63
libraryName = ' iterableapi-ui'
64
- libraryVersion = ' 3.5.15 '
64
+ libraryVersion = ' 3.5.16 '
65
65
}
66
66
67
67
if (hasProperty(" mavenPublishEnabled" )) {
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ android {
21
21
minSdkVersion 21
22
22
targetSdkVersion 34
23
23
24
- buildConfigField " String" , " ITERABLE_SDK_VERSION" , " \" 3.5.15 \" "
24
+ buildConfigField " String" , " ITERABLE_SDK_VERSION" , " \" 3.5.16 \" "
25
25
26
26
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
27
27
}
@@ -88,7 +88,7 @@ dependencies {
88
88
89
89
ext {
90
90
libraryName = ' iterableapi'
91
- libraryVersion = ' 3.5.15 '
91
+ libraryVersion = ' 3.5.16 '
92
92
}
93
93
94
94
if (hasProperty(" mavenPublishEnabled" )) {
Original file line number Diff line number Diff line change @@ -42,8 +42,8 @@ dependencies {
42
42
implementation ' androidx.navigation:navigation-ui-ktx:2.6.0'
43
43
implementation ' com.google.android.material:material:1.9.0'
44
44
45
- implementation ' com.iterable:iterableapi:3.5.15 '
46
- implementation ' com.iterable:iterableapi-ui:3.5.15 '
45
+ implementation ' com.iterable:iterableapi:3.5.16 '
46
+ implementation ' com.iterable:iterableapi-ui:3.5.16 '
47
47
implementation ' com.squareup.okhttp3:mockwebserver:4.2.2'
48
48
49
49
testImplementation ' junit:junit:4.13.2'
You can’t perform that action at this time.
0 commit comments