v3.7.0
3.7.0 (2024-08-08)
Release notes
Features
- Added support for MMKV storage and deprecated AsyncStorage.
import { MMKV } from 'react-native-mmkv'; import { SendbirdUIKitContainer } from '@sendbird/uikit-react-native'; const mmkv = new MMKV(); const App = () => { return <SendbirdUIKitContainer chatOptions={{ localCacheStorage: mmkv }}>{/* ... */}</SendbirdUIKitContainer>; };
Important
Since react-native-mmkv uses JSI for synchronous native method invocations, remote debugging (e.g., with Chrome) is no longer possible.
Instead, you should use Flipper or React DevTools.
-
For more details on remote debugging deprecations, refer to react-native-community discussions and proposals #734.
-
For information on the new debugger, refer to react-native-community discussions and proposals #733.
Chore
- Updated sample React-Native version to 0.74.3