Secured Preference Store Versions Save

A cryptography library and a SharedPreferences wrapper for Android that encrypts the content with 256 bit AES encryption. The Encryption key is securely stored in device's KeyStore.

v0.5.0

6 years ago

Breaking Changes

  • SecuredPreferenceStore needs to be initialized before it can be used. Should be initialized as below inside the onCreate method of Application subclass or launcher activity.
    SecuredPreferenceStore.init(getApplicationContext(), new DefaultRecoveryHandler());