Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,28 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [3.5.12]

### Added
- `EmbeddedSessionManager` methods are now public (previously library-scoped)

### Fixed
- `EmbeddedSessionManager` methods is now accessible which were library group restricted before.
- Added timeout for crypto operations to prevent ANRs.

### Disabling Keychain Encryption
The Iterable SDK provides an option to disable encryption for keychain storage. By default, encryption is enabled to securely store sensitive user data.
To disable keychain encryption, set the `keychainEncryption` parameter to `false` when initializing the SDK:

```java
IterableConfig config = new IterableConfig.Builder()
.setKeychainEncryption(false) // Disable encryption for keychain storage
.build();

IterableApi.initialize(context, apiKey, config);
```

### Changed
- Thanks to @MGaetan89 for modernizing the test infrastructure by replacing deprecated Robolectric APIs with AndroidX Test alternatives and removing unnecessary dependencies.

## [3.5.11]

Expand Down
2 changes: 1 addition & 1 deletion iterableapi-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencies {

ext {
libraryName = 'iterableapi-ui'
libraryVersion = '3.5.11'
libraryVersion = '3.5.12'
}

if (hasProperty("mavenPublishEnabled")) {
Expand Down
4 changes: 2 additions & 2 deletions iterableapi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android {
minSdkVersion 21
targetSdkVersion 34

buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.11\""
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.12\""

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -88,7 +88,7 @@ dependencies {

ext {
libraryName = 'iterableapi'
libraryVersion = '3.5.11'
libraryVersion = '3.5.12'
}

if (hasProperty("mavenPublishEnabled")) {
Expand Down
4 changes: 2 additions & 2 deletions sample-apps/inbox-customization/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ dependencies {
implementation 'androidx.navigation:navigation-ui-ktx:2.1.0'
implementation 'com.google.android.material:material:1.1.0'

implementation 'com.iterable:iterableapi:3.5.11'
implementation 'com.iterable:iterableapi-ui:3.5.11'
implementation 'com.iterable:iterableapi:3.5.12'
implementation 'com.iterable:iterableapi-ui:3.5.12'
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'

testImplementation 'junit:junit:4.12'
Expand Down
Loading