Skip to content

Commit 790e3c9

Browse files
authored
Merge pull request #640 from Iterable/MOB-7048-Prepare-for-3.4.16
[MOB-7048] - Prepare for 3.4.16
2 parents eddcc65 + bf1081d commit 790e3c9

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

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

15+
## [3.4.16](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.16)
16+
#### Fixed
17+
- SDK now handles `null` scenarios preventing crashes when `IterableEncryptedSharedPreference` creation fails.
18+
- Updated crypto library to version [1.1.0-alpha06](https://developer.android.com/jetpack/androidx/releases/security#1.1.0-alpha06). [1.1.0-alpha05](https://developer.android.com/jetpack/androidx/releases/security#1.1.0-alpha05) solves a race condition during creation process.
19+
1520
## [3.4.15](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.15)
1621
#### Added
1722

iterableapi-ui/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ ext {
4848
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
4949
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
5050

51-
libraryVersion = '3.4.15'
51+
libraryVersion = '3.4.16'
5252

5353
developerId = 'davidtruong'
5454
developerName = 'David Truong'

iterableapi/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ android {
1111
minSdkVersion 16
1212
targetSdkVersion 27
1313

14-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.4.15\""
14+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.4.16\""
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
}
@@ -76,7 +76,7 @@ ext {
7676
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
7777
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
7878

79-
libraryVersion = '3.4.15'
79+
libraryVersion = '3.4.16'
8080

8181
developerId = 'davidtruong'
8282
developerName = 'David Truong'

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.4.15'
37-
implementation 'com.iterable:iterableapi-ui:3.4.15'
36+
implementation 'com.iterable:iterableapi:3.4.16'
37+
implementation 'com.iterable:iterableapi-ui:3.4.16'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)