This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
Releases: pnthach95/rn-mmkv-storage-flipper
Releases · pnthach95/rn-mmkv-storage-flipper
Support multiple MMKV instances
Example:
const MMKV1 = new MMKVLoader()
.withInstanceID('test1')
.withEncryption()
.initialize();
const MMKV2 = new MMKVLoader()
.withInstanceID('test2')
.withEncryption()
.initialize();
if (__DEV__) {
mmkvFlipper([MMKV1, MMKV2]);
}