Skip to content

Commit 3adc8c4

Browse files
“AkshayAyyanchira
“Akshay
authored andcommitted
Adding docs for keychain encryption
1 parent 7718803 commit 3adc8c4

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

CHANGELOG.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,23 @@ This project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [3.5.12]
88

9+
### Added
10+
- `EmbeddedSessionManager` methods are now public (previously library-scoped)
11+
912
### Fixed
10-
- `EmbeddedSessionManager` methods is now accessible which were library group restricted before.
13+
- Added timeout for crypto operations to prevent ANRs.
14+
15+
### Disabling Keychain Encryption
16+
The Iterable SDK provides an option to disable encryption for keychain storage. By default, encryption is enabled to securely store sensitive user data.
17+
To disable keychain encryption, set the `keychainEncryption` parameter to `false` when initializing the SDK:
18+
19+
```java
20+
IterableConfig config = new IterableConfig.Builder()
21+
.setKeychainEncryption(false) // Disable encryption for keychain storage
22+
.build();
23+
24+
IterableApi.initialize(context, apiKey, config);
25+
```
1126

1227
## [3.5.11]
1328

0 commit comments

Comments
 (0)