Live video on the AT Protocol

add android stuff

+4
+4
js/config-react-native-webrtc/src/config-react-native-webrtc.ts
··· 43 43 .build() 44 44 options.audioDeviceModule = JavaAudioDeviceModule.builder(this) 45 45 .setAudioAttributes(audioAttributes) 46 + .setUseStereoInput(true) 47 + .setUseStereoOutput(true) 46 48 .createAudioDeviceModule() 47 49 `, 48 50 }, ··· 141 143 let options = WebRTCModuleOptions.sharedInstance() 142 144 options.loggingSeverity = .warning 143 145 options.audioDevice = device 146 + // Enable stereo audio 147 + options.enableStereoOutput = true 144 148 // End WebRTC Configuration 145 149 146 150 let delegate = ReactNativeDelegate()