This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
Releases: emeraldsanto/react-native-encrypted-storage
Releases · emeraldsanto/react-native-encrypted-storage
2.3.0
This version includes a decrease in the minSdkVersion to from 23, in order to make this happen I simply checked wether or not the EncryptedSharedPreferences API is available and when it is not I fall back to normal SharedPreferences.
2.2.0
This version brings migration to TypeScript, with auto-generated declaration files.
2.1.0
In this release, I've decided to rewrite all Kotlin and Swift code to Java and Objective-C. This is due to some people experiencing problems with initial setup as React Native doesn't support those languages by default. This library will now be much simpler to install and use.
Misc
- Improved tests
- Improved type definitions
2.0.1
Bug fixes
- Running pod install would sometimes throw an error because no
swift_version
attribute was present in the.podspec
file.
2.0.0
Naming
store
was renamed tosetItem
retrieve
was renamed togetItem
remove
was renamed toremoveItem
Functionality
- More standard API, should now be a drop in replacement for AsyncStorage (supports callbacks)
- Redux Persist compatibility (hence the name changes)
- Added tests for each possible method, promise and callback forms
1.0.0
First production ready release, supports storing, retrieving and removing values.