Skip to content

v3.11.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 16 Sep 05:29
· 7 commits to main since this release

3.11.0 (2025-09-16)

Features

  • add react-native-nitro-sound for React Native 0.81 support (7dcf0cc)

Notes

For React Native 0.81 and above, you should use the react-native-nitro-sound
package instead of react-native-audio-recorder-player.

import * as AudioRecorderPlayer from 'react-native-nitro-sound';
export const platformServices: SendbirdUIKitContainerProps['platformServices'] = {
  player: createNativePlayerService({
    audioRecorderModule: AudioRecorderPlayer,
  }),
  recorder: createNativeRecorderService({
    audioRecorderModule: AudioRecorderPlayer,
  }),
};