Skip to content
This repository has been archived by the owner on Nov 7, 2023. It is now read-only.

Releases: emeraldsanto/react-native-encrypted-storage

2.3.0

30 May 03:21
f3a3582
Compare
Choose a tag to compare

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

27 May 02:40
137cb5f
Compare
Choose a tag to compare

This version brings migration to TypeScript, with auto-generated declaration files.

2.1.0

01 Mar 21:46
1e7a68b
Compare
Choose a tag to compare

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

26 Feb 17:55
Compare
Choose a tag to compare

Bug fixes

  • Running pod install would sometimes throw an error because no swift_version attribute was present in the .podspec file.

2.0.0

15 Feb 23:26
a2da117
Compare
Choose a tag to compare

Naming

  • store was renamed to setItem
  • retrieve was renamed to getItem
  • remove was renamed to removeItem

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

12 Feb 22:00
Compare
Choose a tag to compare

First production ready release, supports storing, retrieving and removing values.