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