Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Releases: pnthach95/rn-mmkv-storage-flipper

Support multiple MMKV instances

30 Jan 05:18
Compare
Choose a tag to compare

Example:

const MMKV1 = new MMKVLoader()
  .withInstanceID('test1')
  .withEncryption()
  .initialize();

const MMKV2 = new MMKVLoader()
  .withInstanceID('test2')
  .withEncryption()
  .initialize();

if (__DEV__) {
  mmkvFlipper([MMKV1, MMKV2]);
}