Skip to content

Commit ec066e3

Browse files
committed
[MOB - 5894] - Prepare for release
1 parent fc559c2 commit ec066e3

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,25 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1515
#### Fixed
1616
- nothing yet
1717

18+
## [3.4.11](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.11)
19+
#### Added
20+
- Custom Push Notification Sounds!
21+
You can now customize the sound that plays when users receive push notifications.
22+
To use a custom sound, simply add a sound file to your app's `res` folder and use the same filename when sending the push notification.
23+
- `getEmail()`, `getUserId()`, and `getAuthToken()` methods are now available to access email, userId, and authToken associated with a user account, respectively.
24+
25+
#### Changed
26+
- Updated Security Crypto Library and Improved EncryptedSharedPreference Handling
27+
The androidx security crypto library has been updated from version `1.0.0` to `1.1.0-alpha04` to address a known issue causing crashes when creating `EncryptedSharedPreference`.
28+
To prevent these crashes, the SDK now uses unencrypted `SharedPreference` as a fallback if `EncryptedSharedPreference` cannot be created.
29+
However, if your app requires stronger encryption, you can set the `encryptionEnforced` configuration flag to true to enforce encryption and prevent the fallback mechanism from being used.
30+
Please note that enabling this flag will throw an exception if `EncryptedSharedPreference` cannot be created. This enhancement ensures better data security for your users.
31+
- Improved the JWT token management to address issues where null values could prevent the token from being refreshed.
32+
33+
#### Fixed
34+
- In-apps with larger HTMLs don't shrink and appear more consistent across platforms.
35+
- Fixed crashes occurring due to in-app animation transitions.
36+
1837
## [3.4.10](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.10)
1938
This release includes support for encrypting some data at rest, and an option to
2039
store in-app messages in memory.

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.10'
51+
libraryVersion = '3.4.11'
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.10\""
14+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.4.11\""
1515

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

78-
libraryVersion = '3.4.10'
78+
libraryVersion = '3.4.11'
7979

8080
developerId = 'davidtruong'
8181
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.10'
37-
implementation 'com.iterable:iterableapi-ui:3.4.10'
36+
implementation 'com.iterable:iterableapi:3.4.11'
37+
implementation 'com.iterable:iterableapi-ui:3.4.11'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)