You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21-1
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,28 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
5
5
## [Unreleased]
6
6
7
+
## [3.5.12]
8
+
9
+
### Added
10
+
-`EmbeddedSessionManager` methods are now public (previously library-scoped)
11
+
7
12
### Fixed
8
-
-`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:
.setKeychainEncryption(false) // Disable encryption for keychain storage
22
+
.build();
23
+
24
+
IterableApi.initialize(context, apiKey, config);
25
+
```
26
+
27
+
### Changed
28
+
- Thanks to @MGaetan89 for modernizing the test infrastructure by replacing deprecated Robolectric APIs with AndroidX Test alternatives and removing unnecessary dependencies.
0 commit comments