/** * LiveKit WebRTC Globals Setup * * CRITICAL: This file MUST be imported BEFORE any LiveKit components! * It sets up WebRTC globals that Room class depends on. * * Import this as the first line in your app entry point. */ import { registerGlobals } from '@livekit/react-native'; // Register WebRTC globals immediately on module load registerGlobals(); console.log('[LiveKit] WebRTC globals registered');