3.11.1 (2025-10-13)
Features
- add support for expo-video and expo-audio for Expo SDK 54 (39c07ca)
Notes
For Expo 54 and above, you should use the expo-audio and expo-video
packages instead of expo-av.
import * as ExpoAudio from 'expo-audio';
import * as ExpoVideo from 'expo-video';
export const platformServices: SendbirdUIKitContainerProps['platformServices'] = {
media: createExpoMediaService({
avModule: ExpoVideo,
}),
player: createExpoPlayerService({
avModule: ExpoAudio,
}),
recorder: createExpoRecorderService({
avModule: ExpoAudio,
}),
};