3.11.2 (2025-10-16)
Features
- enhance Firebase messaging module support for v22+ (49ca1b1)
Bug Fixes
- read receipts not updating in real-time (ad8eae1)
Notes
To use the Modular API in @react-native-firebase/messaging v22 or higher, you should use the modified code below.
// import RNFBMessaging from '@react-native-firebase/messaging';
import * as RNFBMessaging from '@react-native-firebase/messaging';
export const platformServices: SendbirdUIKitContainerProps['platformServices'] = {
notification: createNativeNotificationService({
messagingModule: RNFBMessaging,
permissionModule: Permissions,
}),
};