Skip to content

Commit b07dafb

Browse files
author
“Akshay
committed
Adding docs for keychain encryption
1 parent dc43446 commit b07dafb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

CHANGELOG.md

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

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

1225
## [3.5.11]
1326

0 commit comments

Comments
 (0)