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

Releases: emeraldsanto/react-native-encrypted-storage

2.3.0

Choose a tag to compare

@emeraldsanto emeraldsanto released this 30 May 03:21
f3a3582

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

Choose a tag to compare

@emeraldsanto emeraldsanto released this 27 May 02:40
137cb5f

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

2.1.0

Choose a tag to compare

@emeraldsanto emeraldsanto released this 01 Mar 21:46
1e7a68b

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

Choose a tag to compare

@emeraldsanto emeraldsanto released this 26 Feb 17:55

Bug fixes

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

2.0.0

Choose a tag to compare

@emeraldsanto emeraldsanto released this 15 Feb 23:26
a2da117

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

Choose a tag to compare

@emeraldsanto emeraldsanto released this 12 Feb 22:00

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