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
Secure information stored in SharedPreferences (#771)
* Secure information stored in SharedPreferences
* Lower aws-android-sdk-core-test compile and target sdk version to 27
* Add a symlink to android-23.jar for core
* Add a gradle task that creates a symlink to android-23.jar for AWS Core
* Fix the gradle task that creates symbolic link to android-23.jar
* Change config.yml to setup android-23
* Enable core, cognitoidentityprovider and cognitoauth integration tests on CircleCI
* Enable core, cognitoidentityprovider and cognitoauth integration tests on CircleCI
* Fix pom.xml
* Improve exception handling in AWSKeyValueStore
* The `SharedPreferences` used by `CognitoCachingCredentialsProvider` is now encrypted.
9
+
* Added a method `CognitoCachingCredentialsProvider.setPersistenceEnabled(boolean)`, which is enabled (set to true) by default therefore the information is persisted in SharedPreferences. When disabled (set to false), the information will only be kept in memory.
10
+
11
+
***Amazon CognitoIdentityProvider**
12
+
* The `SharedPreferences` used by `CognitoUserPool` is now encrypted.
13
+
* Added a method `CognitoUserPool.setPersistenceEnabled(boolean)`, which is enabled (set to true) by default therefore the information is persisted in SharedPreferences. When disabled (set to false), the information will only be kept in memory.
14
+
15
+
***Amazon CognitoAuth**
16
+
* The `SharedPreferences` used by `Auth` is now encrypted.
17
+
* Added a method `Auth.setPersistenceEnabled(boolean)`, which is enabled (set to true) by default therefore the information is persisted in SharedPreferences. When disabled (set to false), the information will only be kept in memory.
18
+
19
+
***AWSMobileClient**
20
+
* The `SharedPreferences` used by `AWSMobileClient` is now encrypted.
0 commit comments