v0.7.2
What's New
- Remote Debugging with in-memory adapter
- Add type assertions when setting values to storage #240
What's Fixed
- Fix CI issues when building project on android #242
- Fix
useMMKVStorage
hook not updating when removing a value or setting it to null/undefined #163 @autoreleasefool
What's Changed
The default MMKVStorage.Loader
import has been deprecated in favor of direct importing. @unfernandito
Before:
import MMKVStorage from "react-native-mmkv-storage";
const MMKV = new MMKVStorage.Loader().initialize();
Now more simple and clear:
import {MMKVLoader} from "react-native-mmkv-storage";
const MMKV = new MMKVLoader().initialize();