Skip to content

v3.11.1

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 13 Oct 01:39
· 1 commit to main since this release

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