Skip to content

Commit aa6e792

Browse files
committed
Prepare for release 3.5.16
1 parent 1565e05 commit aa6e792

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66

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+
715
## [3.5.15]
816
### Fixed
917
- Fixed JWT token refresh issues when app is in background, ensuring reliable token refresh in all app states

iterableapi-ui/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ dependencies {
6161

6262
ext {
6363
libraryName = 'iterableapi-ui'
64-
libraryVersion = '3.5.15'
64+
libraryVersion = '3.5.16'
6565
}
6666

6767
if (hasProperty("mavenPublishEnabled")) {

iterableapi/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ android {
2121
minSdkVersion 21
2222
targetSdkVersion 34
2323

24-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.15\""
24+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.16\""
2525

2626
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2727
}
@@ -88,7 +88,7 @@ dependencies {
8888

8989
ext {
9090
libraryName = 'iterableapi'
91-
libraryVersion = '3.5.15'
91+
libraryVersion = '3.5.16'
9292
}
9393

9494
if (hasProperty("mavenPublishEnabled")) {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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.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'
4747
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
4848

4949
testImplementation 'junit:junit:4.13.2'

0 commit comments

Comments
 (0)