Live video on the AT Protocol

add android stuff

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