Skip to content

v3.11.2

Latest

Choose a tag to compare

@github-actions github-actions released this 16 Oct 03:57
· 1 commit to main since this release

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,
  }),
};