@sbhjt-gr/react-native-webrtc 124.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.clang-format +11 -0
- package/.claude/settings.local.json +9 -0
- package/.eslintignore +6 -0
- package/.nvmrc +1 -0
- package/ISSUE_TEMPLATE.md +40 -0
- package/LICENSE +22 -0
- package/README.md +103 -0
- package/android/build.gradle +37 -0
- package/android/consumer-rules.pro +3 -0
- package/android/src/main/AndroidManifest.xml +11 -0
- package/android/src/main/java/com/oney/WebRTCModule/AbstractVideoCaptureController.java +113 -0
- package/android/src/main/java/com/oney/WebRTCModule/CameraCaptureController.java +338 -0
- package/android/src/main/java/com/oney/WebRTCModule/CameraEventsHandler.java +49 -0
- package/android/src/main/java/com/oney/WebRTCModule/DataChannelWrapper.java +99 -0
- package/android/src/main/java/com/oney/WebRTCModule/DataPacketCryptorManager.java +63 -0
- package/android/src/main/java/com/oney/WebRTCModule/DisplayUtils.java +16 -0
- package/android/src/main/java/com/oney/WebRTCModule/EglUtils.java +66 -0
- package/android/src/main/java/com/oney/WebRTCModule/GetUserMediaImpl.java +539 -0
- package/android/src/main/java/com/oney/WebRTCModule/LibraryLoader.java +21 -0
- package/android/src/main/java/com/oney/WebRTCModule/MediaProjectionNotification.java +70 -0
- package/android/src/main/java/com/oney/WebRTCModule/MediaProjectionService.java +82 -0
- package/android/src/main/java/com/oney/WebRTCModule/PeerConnectionObserver.java +588 -0
- package/android/src/main/java/com/oney/WebRTCModule/RTCCryptoManager.java +493 -0
- package/android/src/main/java/com/oney/WebRTCModule/RTCVideoViewManager.java +98 -0
- package/android/src/main/java/com/oney/WebRTCModule/ReactBridgeUtil.java +36 -0
- package/android/src/main/java/com/oney/WebRTCModule/ScreenCaptureController.java +94 -0
- package/android/src/main/java/com/oney/WebRTCModule/SerializeUtils.java +342 -0
- package/android/src/main/java/com/oney/WebRTCModule/StringUtils.java +101 -0
- package/android/src/main/java/com/oney/WebRTCModule/ThreadUtils.java +41 -0
- package/android/src/main/java/com/oney/WebRTCModule/TrackCapturerEventsEmitter.java +34 -0
- package/android/src/main/java/com/oney/WebRTCModule/VideoTrackAdapter.java +137 -0
- package/android/src/main/java/com/oney/WebRTCModule/WebRTCModule.java +1643 -0
- package/android/src/main/java/com/oney/WebRTCModule/WebRTCModuleOptions.java +33 -0
- package/android/src/main/java/com/oney/WebRTCModule/WebRTCModulePackage.java +21 -0
- package/android/src/main/java/com/oney/WebRTCModule/WebRTCView.java +583 -0
- package/android/src/main/java/com/oney/WebRTCModule/palabra/PalabraClient.java +464 -0
- package/android/src/main/java/com/oney/WebRTCModule/palabra/PalabraConfig.java +17 -0
- package/android/src/main/java/com/oney/WebRTCModule/palabra/PalabraListener.java +7 -0
- package/android/src/main/java/com/oney/WebRTCModule/videoEffects/ProcessorProvider.java +38 -0
- package/android/src/main/java/com/oney/WebRTCModule/videoEffects/VideoEffectProcessor.java +59 -0
- package/android/src/main/java/com/oney/WebRTCModule/videoEffects/VideoFrameProcessor.java +19 -0
- package/android/src/main/java/com/oney/WebRTCModule/videoEffects/VideoFrameProcessorFactoryInterface.java +12 -0
- package/android/src/main/java/com/oney/WebRTCModule/webrtcutils/H264AndSoftwareVideoDecoderFactory.java +73 -0
- package/android/src/main/java/com/oney/WebRTCModule/webrtcutils/H264AndSoftwareVideoEncoderFactory.java +73 -0
- package/android/src/main/java/com/oney/WebRTCModule/webrtcutils/SoftwareVideoDecoderFactoryProxy.java +36 -0
- package/android/src/main/java/com/oney/WebRTCModule/webrtcutils/SoftwareVideoEncoderFactoryProxy.java +36 -0
- package/android/src/main/java/org/webrtc/Camera1Helper.java +54 -0
- package/android/src/main/java/org/webrtc/Camera2Helper.java +52 -0
- package/android/src/main/res/values/strings.xml +5 -0
- package/android/src/main/res/values/styles.xml +8 -0
- package/apple/.placeholder +0 -0
- package/ios/RCTWebRTC/CaptureController.h +18 -0
- package/ios/RCTWebRTC/CaptureController.m +29 -0
- package/ios/RCTWebRTC/CapturerEventsDelegate.h +12 -0
- package/ios/RCTWebRTC/DataChannelWrapper.h +27 -0
- package/ios/RCTWebRTC/DataChannelWrapper.m +42 -0
- package/ios/RCTWebRTC/I420Converter.h +22 -0
- package/ios/RCTWebRTC/I420Converter.m +164 -0
- package/ios/RCTWebRTC/PIPController.h +24 -0
- package/ios/RCTWebRTC/PIPController.m +234 -0
- package/ios/RCTWebRTC/PalabraAudioSink.h +13 -0
- package/ios/RCTWebRTC/PalabraAudioSink.m +18 -0
- package/ios/RCTWebRTC/PalabraClient.h +36 -0
- package/ios/RCTWebRTC/PalabraClient.m +584 -0
- package/ios/RCTWebRTC/RCTConvert+WebRTC.h +16 -0
- package/ios/RCTWebRTC/RCTConvert+WebRTC.m +206 -0
- package/ios/RCTWebRTC/RTCMediaStreamTrack+React.h +10 -0
- package/ios/RCTWebRTC/RTCMediaStreamTrack+React.m +16 -0
- package/ios/RCTWebRTC/RTCVideoViewManager.h +29 -0
- package/ios/RCTWebRTC/RTCVideoViewManager.m +411 -0
- package/ios/RCTWebRTC/SampleBufferVideoCallView.h +12 -0
- package/ios/RCTWebRTC/SampleBufferVideoCallView.m +178 -0
- package/ios/RCTWebRTC/ScreenCaptureController.h +20 -0
- package/ios/RCTWebRTC/ScreenCaptureController.m +83 -0
- package/ios/RCTWebRTC/ScreenCapturePickerViewManager.h +7 -0
- package/ios/RCTWebRTC/ScreenCapturePickerViewManager.m +60 -0
- package/ios/RCTWebRTC/ScreenCapturer.h +19 -0
- package/ios/RCTWebRTC/ScreenCapturer.m +264 -0
- package/ios/RCTWebRTC/SerializeUtils.h +28 -0
- package/ios/RCTWebRTC/SerializeUtils.m +314 -0
- package/ios/RCTWebRTC/SocketConnection.h +13 -0
- package/ios/RCTWebRTC/SocketConnection.m +137 -0
- package/ios/RCTWebRTC/TrackCapturerEventsEmitter.h +14 -0
- package/ios/RCTWebRTC/TrackCapturerEventsEmitter.m +37 -0
- package/ios/RCTWebRTC/VideoCaptureController.h +21 -0
- package/ios/RCTWebRTC/VideoCaptureController.m +328 -0
- package/ios/RCTWebRTC/WebRTCModule+Palabra.h +4 -0
- package/ios/RCTWebRTC/WebRTCModule+Palabra.m +83 -0
- package/ios/RCTWebRTC/WebRTCModule+Permissions.m +75 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCAudioSession.m +20 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCDataChannel.h +14 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCDataChannel.m +165 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCFrameCryptor.m +611 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCMediaStream.h +14 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCMediaStream.m +533 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCPeerConnection.h +24 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCPeerConnection.m +1004 -0
- package/ios/RCTWebRTC/WebRTCModule+Transceivers.m +267 -0
- package/ios/RCTWebRTC/WebRTCModule+VideoTrackAdapter.h +12 -0
- package/ios/RCTWebRTC/WebRTCModule+VideoTrackAdapter.m +166 -0
- package/ios/RCTWebRTC/WebRTCModule.h +51 -0
- package/ios/RCTWebRTC/WebRTCModule.m +151 -0
- package/ios/RCTWebRTC/WebRTCModuleOptions.h +24 -0
- package/ios/RCTWebRTC/WebRTCModuleOptions.m +31 -0
- package/ios/RCTWebRTC/videoEffects/ProcessorProvider.h +9 -0
- package/ios/RCTWebRTC/videoEffects/ProcessorProvider.m +23 -0
- package/ios/RCTWebRTC/videoEffects/VideoEffectProcessor.h +13 -0
- package/ios/RCTWebRTC/videoEffects/VideoEffectProcessor.m +23 -0
- package/ios/RCTWebRTC/videoEffects/VideoFrameProcessor.h +8 -0
- package/ios/RCTWebRTC.xcodeproj/project.pbxproj +404 -0
- package/ios/RCTWebRTC.xcworkspace/contents.xcworkspacedata +10 -0
- package/lib/commonjs/Constraints.js +2 -0
- package/lib/commonjs/Constraints.js.map +1 -0
- package/lib/commonjs/EventEmitter.js +51 -0
- package/lib/commonjs/EventEmitter.js.map +1 -0
- package/lib/commonjs/Logger.js +47 -0
- package/lib/commonjs/Logger.js.map +1 -0
- package/lib/commonjs/MediaDevices.js +54 -0
- package/lib/commonjs/MediaDevices.js.map +1 -0
- package/lib/commonjs/MediaStream.js +137 -0
- package/lib/commonjs/MediaStream.js.map +1 -0
- package/lib/commonjs/MediaStreamError.js +19 -0
- package/lib/commonjs/MediaStreamError.js.map +1 -0
- package/lib/commonjs/MediaStreamErrorEvent.js +17 -0
- package/lib/commonjs/MediaStreamErrorEvent.js.map +1 -0
- package/lib/commonjs/MediaStreamTrack.js +203 -0
- package/lib/commonjs/MediaStreamTrack.js.map +1 -0
- package/lib/commonjs/MediaStreamTrackEvent.js +26 -0
- package/lib/commonjs/MediaStreamTrackEvent.js.map +1 -0
- package/lib/commonjs/MessageEvent.js +27 -0
- package/lib/commonjs/MessageEvent.js.map +1 -0
- package/lib/commonjs/Permissions.js +116 -0
- package/lib/commonjs/Permissions.js.map +1 -0
- package/lib/commonjs/RTCAudioSession.js +33 -0
- package/lib/commonjs/RTCAudioSession.js.map +1 -0
- package/lib/commonjs/RTCDataChannel.js +165 -0
- package/lib/commonjs/RTCDataChannel.js.map +1 -0
- package/lib/commonjs/RTCDataChannelEvent.js +26 -0
- package/lib/commonjs/RTCDataChannelEvent.js.map +1 -0
- package/lib/commonjs/RTCDataPacketCryptor.js +76 -0
- package/lib/commonjs/RTCDataPacketCryptor.js.map +1 -0
- package/lib/commonjs/RTCDataPacketCryptorFactory.js +27 -0
- package/lib/commonjs/RTCDataPacketCryptorFactory.js.map +1 -0
- package/lib/commonjs/RTCErrorEvent.js +23 -0
- package/lib/commonjs/RTCErrorEvent.js.map +1 -0
- package/lib/commonjs/RTCFrameCryptor.js +138 -0
- package/lib/commonjs/RTCFrameCryptor.js.map +1 -0
- package/lib/commonjs/RTCFrameCryptorFactory.js +81 -0
- package/lib/commonjs/RTCFrameCryptorFactory.js.map +1 -0
- package/lib/commonjs/RTCIceCandidate.js +34 -0
- package/lib/commonjs/RTCIceCandidate.js.map +1 -0
- package/lib/commonjs/RTCIceCandidateEvent.js +28 -0
- package/lib/commonjs/RTCIceCandidateEvent.js.map +1 -0
- package/lib/commonjs/RTCKeyProvider.js +111 -0
- package/lib/commonjs/RTCKeyProvider.js.map +1 -0
- package/lib/commonjs/RTCPIPView.js +38 -0
- package/lib/commonjs/RTCPIPView.js.map +1 -0
- package/lib/commonjs/RTCPIPView.web.js +23 -0
- package/lib/commonjs/RTCPIPView.web.js.map +1 -0
- package/lib/commonjs/RTCPeerConnection.js +694 -0
- package/lib/commonjs/RTCPeerConnection.js.map +1 -0
- package/lib/commonjs/RTCRtcpParameters.js +24 -0
- package/lib/commonjs/RTCRtcpParameters.js.map +1 -0
- package/lib/commonjs/RTCRtpCapabilities.js +22 -0
- package/lib/commonjs/RTCRtpCapabilities.js.map +1 -0
- package/lib/commonjs/RTCRtpCodecCapability.js +19 -0
- package/lib/commonjs/RTCRtpCodecCapability.js.map +1 -0
- package/lib/commonjs/RTCRtpCodecParameters.js +38 -0
- package/lib/commonjs/RTCRtpCodecParameters.js.map +1 -0
- package/lib/commonjs/RTCRtpEncodingParameters.js +78 -0
- package/lib/commonjs/RTCRtpEncodingParameters.js.map +1 -0
- package/lib/commonjs/RTCRtpHeaderExtension.js +27 -0
- package/lib/commonjs/RTCRtpHeaderExtension.js.map +1 -0
- package/lib/commonjs/RTCRtpParameters.js +35 -0
- package/lib/commonjs/RTCRtpParameters.js.map +1 -0
- package/lib/commonjs/RTCRtpReceiveParameters.js +15 -0
- package/lib/commonjs/RTCRtpReceiveParameters.js.map +1 -0
- package/lib/commonjs/RTCRtpReceiver.js +53 -0
- package/lib/commonjs/RTCRtpReceiver.js.map +1 -0
- package/lib/commonjs/RTCRtpSendParameters.js +49 -0
- package/lib/commonjs/RTCRtpSendParameters.js.map +1 -0
- package/lib/commonjs/RTCRtpSender.js +67 -0
- package/lib/commonjs/RTCRtpSender.js.map +1 -0
- package/lib/commonjs/RTCRtpTransceiver.js +81 -0
- package/lib/commonjs/RTCRtpTransceiver.js.map +1 -0
- package/lib/commonjs/RTCSessionDescription.js +33 -0
- package/lib/commonjs/RTCSessionDescription.js.map +1 -0
- package/lib/commonjs/RTCTrackEvent.js +38 -0
- package/lib/commonjs/RTCTrackEvent.js.map +1 -0
- package/lib/commonjs/RTCUtil.js +186 -0
- package/lib/commonjs/RTCUtil.js.map +1 -0
- package/lib/commonjs/RTCView.js +16 -0
- package/lib/commonjs/RTCView.js.map +1 -0
- package/lib/commonjs/RTCView.web.js +62 -0
- package/lib/commonjs/RTCView.web.js.map +1 -0
- package/lib/commonjs/ScreenCapturePickerView.js +10 -0
- package/lib/commonjs/ScreenCapturePickerView.js.map +1 -0
- package/lib/commonjs/ScreenCapturePickerView.web.js +10 -0
- package/lib/commonjs/ScreenCapturePickerView.web.js.map +1 -0
- package/lib/commonjs/getDisplayMedia.js +33 -0
- package/lib/commonjs/getDisplayMedia.js.map +1 -0
- package/lib/commonjs/getUserMedia.js +101 -0
- package/lib/commonjs/getUserMedia.js.map +1 -0
- package/lib/commonjs/index.js +224 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/index.web.js +175 -0
- package/lib/commonjs/index.web.js.map +1 -0
- package/lib/commonjs/webStream.js +35 -0
- package/lib/commonjs/webStream.js.map +1 -0
- package/lib/module/Constraints.js +2 -0
- package/lib/module/Constraints.js.map +1 -0
- package/lib/module/EventEmitter.js +41 -0
- package/lib/module/EventEmitter.js.map +1 -0
- package/lib/module/Logger.js +39 -0
- package/lib/module/Logger.js.map +1 -0
- package/lib/module/MediaDevices.js +46 -0
- package/lib/module/MediaDevices.js.map +1 -0
- package/lib/module/MediaStream.js +129 -0
- package/lib/module/MediaStream.js.map +1 -0
- package/lib/module/MediaStreamError.js +12 -0
- package/lib/module/MediaStreamError.js.map +1 -0
- package/lib/module/MediaStreamErrorEvent.js +10 -0
- package/lib/module/MediaStreamErrorEvent.js.map +1 -0
- package/lib/module/MediaStreamTrack.js +195 -0
- package/lib/module/MediaStreamTrack.js.map +1 -0
- package/lib/module/MediaStreamTrackEvent.js +19 -0
- package/lib/module/MediaStreamTrackEvent.js.map +1 -0
- package/lib/module/MessageEvent.js +20 -0
- package/lib/module/MessageEvent.js.map +1 -0
- package/lib/module/Permissions.js +109 -0
- package/lib/module/Permissions.js.map +1 -0
- package/lib/module/RTCAudioSession.js +26 -0
- package/lib/module/RTCAudioSession.js.map +1 -0
- package/lib/module/RTCDataChannel.js +155 -0
- package/lib/module/RTCDataChannel.js.map +1 -0
- package/lib/module/RTCDataChannelEvent.js +19 -0
- package/lib/module/RTCDataChannelEvent.js.map +1 -0
- package/lib/module/RTCDataPacketCryptor.js +66 -0
- package/lib/module/RTCDataPacketCryptor.js.map +1 -0
- package/lib/module/RTCDataPacketCryptorFactory.js +19 -0
- package/lib/module/RTCDataPacketCryptorFactory.js.map +1 -0
- package/lib/module/RTCErrorEvent.js +16 -0
- package/lib/module/RTCErrorEvent.js.map +1 -0
- package/lib/module/RTCFrameCryptor.js +128 -0
- package/lib/module/RTCFrameCryptor.js.map +1 -0
- package/lib/module/RTCFrameCryptorFactory.js +70 -0
- package/lib/module/RTCFrameCryptorFactory.js.map +1 -0
- package/lib/module/RTCIceCandidate.js +27 -0
- package/lib/module/RTCIceCandidate.js.map +1 -0
- package/lib/module/RTCIceCandidateEvent.js +21 -0
- package/lib/module/RTCIceCandidateEvent.js.map +1 -0
- package/lib/module/RTCKeyProvider.js +101 -0
- package/lib/module/RTCKeyProvider.js.map +1 -0
- package/lib/module/RTCPIPView.js +26 -0
- package/lib/module/RTCPIPView.js.map +1 -0
- package/lib/module/RTCPIPView.web.js +11 -0
- package/lib/module/RTCPIPView.web.js.map +1 -0
- package/lib/module/RTCPeerConnection.js +684 -0
- package/lib/module/RTCPeerConnection.js.map +1 -0
- package/lib/module/RTCRtcpParameters.js +17 -0
- package/lib/module/RTCRtcpParameters.js.map +1 -0
- package/lib/module/RTCRtpCapabilities.js +15 -0
- package/lib/module/RTCRtpCapabilities.js.map +1 -0
- package/lib/module/RTCRtpCodecCapability.js +12 -0
- package/lib/module/RTCRtpCodecCapability.js.map +1 -0
- package/lib/module/RTCRtpCodecParameters.js +31 -0
- package/lib/module/RTCRtpCodecParameters.js.map +1 -0
- package/lib/module/RTCRtpEncodingParameters.js +71 -0
- package/lib/module/RTCRtpEncodingParameters.js.map +1 -0
- package/lib/module/RTCRtpHeaderExtension.js +20 -0
- package/lib/module/RTCRtpHeaderExtension.js.map +1 -0
- package/lib/module/RTCRtpParameters.js +27 -0
- package/lib/module/RTCRtpParameters.js.map +1 -0
- package/lib/module/RTCRtpReceiveParameters.js +7 -0
- package/lib/module/RTCRtpReceiveParameters.js.map +1 -0
- package/lib/module/RTCRtpReceiver.js +45 -0
- package/lib/module/RTCRtpReceiver.js.map +1 -0
- package/lib/module/RTCRtpSendParameters.js +41 -0
- package/lib/module/RTCRtpSendParameters.js.map +1 -0
- package/lib/module/RTCRtpSender.js +59 -0
- package/lib/module/RTCRtpSender.js.map +1 -0
- package/lib/module/RTCRtpTransceiver.js +74 -0
- package/lib/module/RTCRtpTransceiver.js.map +1 -0
- package/lib/module/RTCSessionDescription.js +26 -0
- package/lib/module/RTCSessionDescription.js.map +1 -0
- package/lib/module/RTCTrackEvent.js +31 -0
- package/lib/module/RTCTrackEvent.js.map +1 -0
- package/lib/module/RTCUtil.js +176 -0
- package/lib/module/RTCUtil.js.map +1 -0
- package/lib/module/RTCView.js +11 -0
- package/lib/module/RTCView.js.map +1 -0
- package/lib/module/RTCView.web.js +54 -0
- package/lib/module/RTCView.web.js.map +1 -0
- package/lib/module/ScreenCapturePickerView.js +3 -0
- package/lib/module/ScreenCapturePickerView.js.map +1 -0
- package/lib/module/ScreenCapturePickerView.web.js +4 -0
- package/lib/module/ScreenCapturePickerView.web.js.map +1 -0
- package/lib/module/getDisplayMedia.js +26 -0
- package/lib/module/getDisplayMedia.js.map +1 -0
- package/lib/module/getUserMedia.js +92 -0
- package/lib/module/getUserMedia.js.map +1 -0
- package/lib/module/index.js +60 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/index.web.js +114 -0
- package/lib/module/index.web.js.map +1 -0
- package/lib/module/webStream.js +27 -0
- package/lib/module/webStream.js.map +1 -0
- package/lib/typescript/Constraints.d.ts +19 -0
- package/lib/typescript/EventEmitter.d.ts +6 -0
- package/lib/typescript/Logger.d.ts +13 -0
- package/lib/typescript/MediaDevices.d.ts +30 -0
- package/lib/typescript/MediaStream.d.ts +48 -0
- package/lib/typescript/MediaStreamError.d.ts +6 -0
- package/lib/typescript/MediaStreamErrorEvent.d.ts +6 -0
- package/lib/typescript/MediaStreamTrack.d.ts +101 -0
- package/lib/typescript/MediaStreamTrackEvent.d.ts +19 -0
- package/lib/typescript/MessageEvent.d.ts +20 -0
- package/lib/typescript/Permissions.d.ts +55 -0
- package/lib/typescript/RTCAudioSession.d.ts +10 -0
- package/lib/typescript/RTCDataChannel.d.ts +43 -0
- package/lib/typescript/RTCDataChannelEvent.d.ts +19 -0
- package/lib/typescript/RTCDataPacketCryptor.d.ts +12 -0
- package/lib/typescript/RTCDataPacketCryptorFactory.d.ts +6 -0
- package/lib/typescript/RTCErrorEvent.d.ts +12 -0
- package/lib/typescript/RTCFrameCryptor.d.ts +47 -0
- package/lib/typescript/RTCFrameCryptorFactory.d.ts +21 -0
- package/lib/typescript/RTCIceCandidate.d.ts +17 -0
- package/lib/typescript/RTCIceCandidateEvent.d.ts +20 -0
- package/lib/typescript/RTCKeyProvider.d.ts +21 -0
- package/lib/typescript/RTCPIPView.d.ts +15 -0
- package/lib/typescript/RTCPIPView.web.d.ts +13 -0
- package/lib/typescript/RTCPeerConnection.d.ts +117 -0
- package/lib/typescript/RTCRtcpParameters.d.ts +10 -0
- package/lib/typescript/RTCRtpCapabilities.d.ts +9 -0
- package/lib/typescript/RTCRtpCodecCapability.d.ts +7 -0
- package/lib/typescript/RTCRtpCodecParameters.d.ts +16 -0
- package/lib/typescript/RTCRtpEncodingParameters.d.ts +23 -0
- package/lib/typescript/RTCRtpHeaderExtension.d.ts +12 -0
- package/lib/typescript/RTCRtpParameters.d.ts +19 -0
- package/lib/typescript/RTCRtpReceiveParameters.d.ts +4 -0
- package/lib/typescript/RTCRtpReceiver.d.ts +21 -0
- package/lib/typescript/RTCRtpSendParameters.d.ts +20 -0
- package/lib/typescript/RTCRtpSender.d.ts +22 -0
- package/lib/typescript/RTCRtpTransceiver.d.ts +31 -0
- package/lib/typescript/RTCSessionDescription.d.ts +12 -0
- package/lib/typescript/RTCTrackEvent.d.ts +29 -0
- package/lib/typescript/RTCUtil.d.ts +37 -0
- package/lib/typescript/RTCView.d.ts +117 -0
- package/lib/typescript/RTCView.web.d.ts +25 -0
- package/lib/typescript/ScreenCapturePickerView.d.ts +2 -0
- package/lib/typescript/ScreenCapturePickerView.web.d.ts +1 -0
- package/lib/typescript/getDisplayMedia.d.ts +2 -0
- package/lib/typescript/getUserMedia.d.ts +7 -0
- package/lib/typescript/index.d.ts +22 -0
- package/lib/typescript/index.web.d.ts +101 -0
- package/lib/typescript/webStream.d.ts +3 -0
- package/livekit-react-native-webrtc.podspec +29 -0
- package/macos/RCTWebRTC.xcodeproj/project.pbxproj +324 -0
- package/macos/RCTWebRTC.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/macos/RCTWebRTC.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/metro.config.js +7 -0
- package/metro.config.macos.js +14 -0
- package/package.json +66 -0
- package/react-native.config.js +11 -0
- package/src/.eslintrc.cjs +67 -0
- package/src/Constraints.ts +21 -0
- package/src/EventEmitter.ts +65 -0
- package/src/Logger.ts +49 -0
- package/src/MediaDevices.ts +53 -0
- package/src/MediaStream.ts +161 -0
- package/src/MediaStreamError.ts +12 -0
- package/src/MediaStreamErrorEvent.ts +11 -0
- package/src/MediaStreamTrack.ts +284 -0
- package/src/MediaStreamTrackEvent.ts +25 -0
- package/src/MessageEvent.ts +26 -0
- package/src/Permissions.ts +133 -0
- package/src/RTCAudioSession.ts +25 -0
- package/src/RTCDataChannel.ts +190 -0
- package/src/RTCDataChannelEvent.ts +28 -0
- package/src/RTCDataPacketCryptor.ts +90 -0
- package/src/RTCDataPacketCryptorFactory.ts +25 -0
- package/src/RTCErrorEvent.ts +21 -0
- package/src/RTCFrameCryptor.ts +163 -0
- package/src/RTCFrameCryptorFactory.ts +102 -0
- package/src/RTCIceCandidate.ts +29 -0
- package/src/RTCIceCandidateEvent.ts +26 -0
- package/src/RTCKeyProvider.ts +117 -0
- package/src/RTCPIPView.tsx +47 -0
- package/src/RTCPIPView.web.tsx +18 -0
- package/src/RTCPeerConnection.ts +832 -0
- package/src/RTCRtcpParameters.ts +23 -0
- package/src/RTCRtpCapabilities.ts +16 -0
- package/src/RTCRtpCodecCapability.ts +13 -0
- package/src/RTCRtpCodecParameters.ts +44 -0
- package/src/RTCRtpEncodingParameters.ts +90 -0
- package/src/RTCRtpHeaderExtension.ts +27 -0
- package/src/RTCRtpParameters.ts +37 -0
- package/src/RTCRtpReceiveParameters.ts +7 -0
- package/src/RTCRtpReceiver.ts +60 -0
- package/src/RTCRtpSendParameters.ts +63 -0
- package/src/RTCRtpSender.ts +78 -0
- package/src/RTCRtpTransceiver.ts +107 -0
- package/src/RTCSessionDescription.ts +30 -0
- package/src/RTCTrackEvent.ts +42 -0
- package/src/RTCUtil.ts +211 -0
- package/src/RTCView.ts +122 -0
- package/src/RTCView.web.tsx +82 -0
- package/src/ScreenCapturePickerView.ts +4 -0
- package/src/ScreenCapturePickerView.web.tsx +3 -0
- package/src/getDisplayMedia.ts +30 -0
- package/src/getUserMedia.ts +111 -0
- package/src/index.ts +107 -0
- package/src/index.web.ts +191 -0
- package/src/webStream.ts +33 -0
- package/tools/format.sh +6 -0
- package/tools/release.sh +45 -0
- package/tsconfig.json +17 -0
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { ViewProps } from 'react-native';
|
|
2
|
+
/**
|
|
3
|
+
* Native prop validation was removed from RN in:
|
|
4
|
+
* https://github.com/facebook/react-native/commit/8dc3ba0444c94d9bbb66295b5af885bff9b9cd34
|
|
5
|
+
*
|
|
6
|
+
* So we list them here for documentation purposes.
|
|
7
|
+
*/
|
|
8
|
+
export interface RTCVideoViewProps extends ViewProps {
|
|
9
|
+
/**
|
|
10
|
+
* Indicates whether the video specified by {@link #streamURL} should be
|
|
11
|
+
* mirrored during rendering. Commonly, applications choose to mirror the
|
|
12
|
+
* user-facing camera.
|
|
13
|
+
*
|
|
14
|
+
* mirror: boolean
|
|
15
|
+
*/
|
|
16
|
+
mirror?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* In the fashion of
|
|
19
|
+
* https://www.w3.org/TR/html5/embedded-content-0.html#dom-video-videowidth
|
|
20
|
+
* and https://www.w3.org/TR/html5/rendering.html#video-object-fit,
|
|
21
|
+
* resembles the CSS style object-fit.
|
|
22
|
+
*
|
|
23
|
+
* objectFit: 'contain' | 'cover'
|
|
24
|
+
*
|
|
25
|
+
* Defaults to 'cover'.
|
|
26
|
+
*/
|
|
27
|
+
objectFit?: 'contain' | 'cover';
|
|
28
|
+
/**
|
|
29
|
+
* URL / id of the stream that should be rendered.
|
|
30
|
+
*
|
|
31
|
+
* streamURL: string
|
|
32
|
+
*/
|
|
33
|
+
streamURL?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Similarly to the CSS property z-index, specifies the z-order of this
|
|
36
|
+
* RTCView in the stacking space of all RTCViews. When RTCViews overlap,
|
|
37
|
+
* zOrder determines which one covers the other. An RTCView with a larger
|
|
38
|
+
* zOrder generally covers an RTCView with a lower one.
|
|
39
|
+
*
|
|
40
|
+
* Non-overlapping RTCViews may safely share a z-order (because one does not
|
|
41
|
+
* have to cover the other).
|
|
42
|
+
*
|
|
43
|
+
* The support for zOrder is platform-dependent and/or
|
|
44
|
+
* implementation-specific. Thus, specifying a value for zOrder is to be
|
|
45
|
+
* thought of as giving a hint rather than as imposing a requirement. For
|
|
46
|
+
* example, video renderers such as RTCView are commonly implemented using
|
|
47
|
+
* OpenGL and OpenGL views may have different numbers of layers in their
|
|
48
|
+
* stacking space. Android has three: a layer bellow the window (aka
|
|
49
|
+
* default), a layer bellow the window again but above the previous layer
|
|
50
|
+
* (aka media overlay), and above the window. Consequently, it is advisable
|
|
51
|
+
* to limit the number of utilized layers in the stacking space to the
|
|
52
|
+
* minimum sufficient for the desired display. For example, a video call
|
|
53
|
+
* application usually needs a maximum of two zOrder values: 0 for the
|
|
54
|
+
* remote video(s) which appear in the background, and 1 for the local
|
|
55
|
+
* video(s) which appear above the remote video(s).
|
|
56
|
+
*
|
|
57
|
+
* zOrder: number
|
|
58
|
+
*/
|
|
59
|
+
zOrder?: number;
|
|
60
|
+
/**
|
|
61
|
+
* Picture in picture options for this view. Disabled if not supplied.
|
|
62
|
+
*
|
|
63
|
+
* Note: this should only be generally only used with remote video tracks,
|
|
64
|
+
* as the local camera may stop while in the background.
|
|
65
|
+
*
|
|
66
|
+
* iOS only. Requires iOS 15.0 or above, and the PIP background mode capability.
|
|
67
|
+
*/
|
|
68
|
+
iosPIP?: RTCIOSPIPOptions;
|
|
69
|
+
/**
|
|
70
|
+
* Callback function that is called when the dimensions of the video change.
|
|
71
|
+
*
|
|
72
|
+
* @param {Object} event - The event object containing the new dimensions.
|
|
73
|
+
* @param {Object} event.nativeEvent - The native event data.
|
|
74
|
+
* @param {number} event.nativeEvent.width - The width of the video.
|
|
75
|
+
* @param {number} event.nativeEvent.height - The height of the video.
|
|
76
|
+
*/
|
|
77
|
+
onDimensionsChange?: (event: {
|
|
78
|
+
nativeEvent: {
|
|
79
|
+
width: number;
|
|
80
|
+
height: number;
|
|
81
|
+
};
|
|
82
|
+
}) => void;
|
|
83
|
+
}
|
|
84
|
+
export interface RTCIOSPIPOptions {
|
|
85
|
+
/**
|
|
86
|
+
* Whether PIP can be launched from this view.
|
|
87
|
+
*
|
|
88
|
+
* Defaults to true.
|
|
89
|
+
*/
|
|
90
|
+
enabled?: boolean;
|
|
91
|
+
/**
|
|
92
|
+
* The preferred size of the PIP window.
|
|
93
|
+
*/
|
|
94
|
+
preferredSize?: {
|
|
95
|
+
width: number;
|
|
96
|
+
height: number;
|
|
97
|
+
};
|
|
98
|
+
/**
|
|
99
|
+
* Indicates whether Picture in Picture starts automatically
|
|
100
|
+
* when the controller embeds its content inline and the app
|
|
101
|
+
* transitions to the background.
|
|
102
|
+
*
|
|
103
|
+
* Defaults to true.
|
|
104
|
+
*
|
|
105
|
+
* See: AVPictureInPictureController.canStartPictureInPictureAutomaticallyFromInline
|
|
106
|
+
*/
|
|
107
|
+
startAutomatically?: boolean;
|
|
108
|
+
/**
|
|
109
|
+
* Indicates whether Picture in Picture should stop automatically
|
|
110
|
+
* when the app returns to the foreground.
|
|
111
|
+
*
|
|
112
|
+
* Defaults to true.
|
|
113
|
+
*/
|
|
114
|
+
stopAutomatically?: boolean;
|
|
115
|
+
}
|
|
116
|
+
declare const _default: import("react-native").HostComponent<RTCVideoViewProps>;
|
|
117
|
+
export default _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ViewProps } from 'react-native';
|
|
3
|
+
export interface RTCVideoViewProps extends ViewProps {
|
|
4
|
+
mirror?: boolean;
|
|
5
|
+
objectFit?: 'contain' | 'cover';
|
|
6
|
+
streamURL?: string;
|
|
7
|
+
zOrder?: number;
|
|
8
|
+
iosPIP?: RTCIOSPIPOptions;
|
|
9
|
+
onDimensionsChange?: (event: {
|
|
10
|
+
nativeEvent: {
|
|
11
|
+
width: number;
|
|
12
|
+
height: number;
|
|
13
|
+
};
|
|
14
|
+
}) => void;
|
|
15
|
+
}
|
|
16
|
+
export interface RTCIOSPIPOptions {
|
|
17
|
+
enabled?: boolean;
|
|
18
|
+
preferredSize?: {
|
|
19
|
+
width: number;
|
|
20
|
+
height: number;
|
|
21
|
+
};
|
|
22
|
+
startAutomatically?: boolean;
|
|
23
|
+
stopAutomatically?: boolean;
|
|
24
|
+
}
|
|
25
|
+
export default function RTCView({ mirror, objectFit, streamURL, style, onDimensionsChange, }: RTCVideoViewProps): JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function ScreenCapturePickerView(): null;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { MediaTrackConstraints } from './Constraints';
|
|
2
|
+
import MediaStream from './MediaStream';
|
|
3
|
+
export interface Constraints {
|
|
4
|
+
audio?: boolean | MediaTrackConstraints;
|
|
5
|
+
video?: boolean | MediaTrackConstraints;
|
|
6
|
+
}
|
|
7
|
+
export default function getUserMedia(constraints?: Constraints): Promise<MediaStream>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import mediaDevices from './MediaDevices';
|
|
2
|
+
import MediaStream from './MediaStream';
|
|
3
|
+
import MediaStreamTrack, { type MediaTrackSettings, type PalabraConfig, type PalabraTranscription } from './MediaStreamTrack';
|
|
4
|
+
import permissions from './Permissions';
|
|
5
|
+
import RTCAudioSession from './RTCAudioSession';
|
|
6
|
+
import RTCDataPacketCryptor, { RTCEncryptedPacket } from './RTCDataPacketCryptor';
|
|
7
|
+
import RTCDataPacketCryptorFactory from './RTCDataPacketCryptorFactory';
|
|
8
|
+
import RTCErrorEvent from './RTCErrorEvent';
|
|
9
|
+
import RTCFrameCryptor, { RTCFrameCryptorState } from './RTCFrameCryptor';
|
|
10
|
+
import RTCFrameCryptorFactory, { RTCFrameCryptorAlgorithm, RTCKeyProviderOptions } from './RTCFrameCryptorFactory';
|
|
11
|
+
import RTCIceCandidate from './RTCIceCandidate';
|
|
12
|
+
import RTCKeyProvider from './RTCKeyProvider';
|
|
13
|
+
import RTCPIPView, { startIOSPIP, stopIOSPIP } from './RTCPIPView';
|
|
14
|
+
import RTCPeerConnection from './RTCPeerConnection';
|
|
15
|
+
import RTCRtpReceiver from './RTCRtpReceiver';
|
|
16
|
+
import RTCRtpSender from './RTCRtpSender';
|
|
17
|
+
import RTCRtpTransceiver from './RTCRtpTransceiver';
|
|
18
|
+
import RTCSessionDescription from './RTCSessionDescription';
|
|
19
|
+
import RTCView, { type RTCVideoViewProps, type RTCIOSPIPOptions } from './RTCView';
|
|
20
|
+
import ScreenCapturePickerView from './ScreenCapturePickerView';
|
|
21
|
+
export { RTCIceCandidate, RTCPeerConnection, RTCSessionDescription, RTCView, RTCPIPView, ScreenCapturePickerView, RTCRtpTransceiver, RTCRtpReceiver, RTCRtpSender, RTCErrorEvent, RTCAudioSession, RTCDataPacketCryptor, RTCDataPacketCryptorFactory, RTCEncryptedPacket, RTCFrameCryptor, RTCFrameCryptorAlgorithm, RTCFrameCryptorState, RTCFrameCryptorFactory, RTCKeyProvider, RTCKeyProviderOptions, MediaStream, MediaStreamTrack, type MediaTrackSettings, type PalabraConfig, type PalabraTranscription, type RTCVideoViewProps, type RTCIOSPIPOptions, mediaDevices, permissions, registerGlobals, startIOSPIP, stopIOSPIP, };
|
|
22
|
+
declare function registerGlobals(): void;
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import RTCPIPView, { startIOSPIP, stopIOSPIP } from './RTCPIPView.web';
|
|
2
|
+
import RTCView, { type RTCIOSPIPOptions, type RTCVideoViewProps } from './RTCView.web';
|
|
3
|
+
import ScreenCapturePickerView from './ScreenCapturePickerView.web';
|
|
4
|
+
export declare type MediaTrackSettings = Record<string, unknown>;
|
|
5
|
+
export declare type PalabraConfig = Record<string, never>;
|
|
6
|
+
export declare type PalabraTranscription = {
|
|
7
|
+
text: string;
|
|
8
|
+
lang: string;
|
|
9
|
+
isFinal: boolean;
|
|
10
|
+
};
|
|
11
|
+
export declare type RTCEncryptedPacket = {
|
|
12
|
+
payload: Uint8Array;
|
|
13
|
+
iv: Uint8Array;
|
|
14
|
+
keyIndex: number;
|
|
15
|
+
};
|
|
16
|
+
export declare enum RTCFrameCryptorAlgorithm {
|
|
17
|
+
kAesGcm = "kAesGcm"
|
|
18
|
+
}
|
|
19
|
+
export declare enum RTCFrameCryptorState {
|
|
20
|
+
kNew = "kNew",
|
|
21
|
+
kOk = "kOk"
|
|
22
|
+
}
|
|
23
|
+
export declare type RTCKeyProviderOptions = Record<string, unknown>;
|
|
24
|
+
declare class UnsupportedFeature {
|
|
25
|
+
protected unsupported(): never;
|
|
26
|
+
}
|
|
27
|
+
declare class RTCDataPacketCryptor extends UnsupportedFeature {
|
|
28
|
+
}
|
|
29
|
+
declare class RTCDataPacketCryptorFactory extends UnsupportedFeature {
|
|
30
|
+
static createDataPacketCryptor(): Promise<void>;
|
|
31
|
+
}
|
|
32
|
+
declare class RTCErrorEvent extends Event {
|
|
33
|
+
}
|
|
34
|
+
declare class RTCFrameCryptor extends UnsupportedFeature {
|
|
35
|
+
}
|
|
36
|
+
declare class RTCFrameCryptorFactory extends UnsupportedFeature {
|
|
37
|
+
static createDefaultKeyProvider(): RTCKeyProvider;
|
|
38
|
+
}
|
|
39
|
+
declare class RTCKeyProvider extends UnsupportedFeature {
|
|
40
|
+
setSharedKey(): void;
|
|
41
|
+
setKey(): void;
|
|
42
|
+
ratchetKey(): void;
|
|
43
|
+
ratchetSharedKey(): void;
|
|
44
|
+
setSifTrailer(): void;
|
|
45
|
+
dispose(): void;
|
|
46
|
+
}
|
|
47
|
+
declare class RTCAudioSession {
|
|
48
|
+
static setConfiguration(): Promise<void>;
|
|
49
|
+
}
|
|
50
|
+
declare const mediaDevices: MediaDevices | {
|
|
51
|
+
enumerateDevices: () => Promise<never[]>;
|
|
52
|
+
getDisplayMedia: () => Promise<never>;
|
|
53
|
+
getUserMedia: () => Promise<never>;
|
|
54
|
+
};
|
|
55
|
+
declare const permissions: {
|
|
56
|
+
check(): Promise<boolean>;
|
|
57
|
+
request(): Promise<boolean>;
|
|
58
|
+
};
|
|
59
|
+
export declare const RTCIceCandidate: {
|
|
60
|
+
new (candidateInitDict?: RTCIceCandidateInit | undefined): RTCIceCandidate;
|
|
61
|
+
prototype: RTCIceCandidate;
|
|
62
|
+
};
|
|
63
|
+
export declare const RTCPeerConnection: {
|
|
64
|
+
new (configuration?: RTCConfiguration | undefined): RTCPeerConnection;
|
|
65
|
+
prototype: RTCPeerConnection;
|
|
66
|
+
generateCertificate(keygenAlgorithm: AlgorithmIdentifier): Promise<RTCCertificate>;
|
|
67
|
+
};
|
|
68
|
+
export declare const RTCSessionDescription: {
|
|
69
|
+
new (descriptionInitDict: RTCSessionDescriptionInit): RTCSessionDescription;
|
|
70
|
+
prototype: RTCSessionDescription;
|
|
71
|
+
};
|
|
72
|
+
export declare const RTCRtpReceiver: {
|
|
73
|
+
new (): RTCRtpReceiver;
|
|
74
|
+
prototype: RTCRtpReceiver;
|
|
75
|
+
getCapabilities(kind: string): RTCRtpCapabilities | null;
|
|
76
|
+
};
|
|
77
|
+
export declare const RTCRtpSender: {
|
|
78
|
+
new (): RTCRtpSender;
|
|
79
|
+
prototype: RTCRtpSender;
|
|
80
|
+
getCapabilities(kind: string): RTCRtpCapabilities | null;
|
|
81
|
+
};
|
|
82
|
+
export declare const RTCRtpTransceiver: {
|
|
83
|
+
new (): RTCRtpTransceiver;
|
|
84
|
+
prototype: RTCRtpTransceiver;
|
|
85
|
+
};
|
|
86
|
+
export declare const MediaStream: {
|
|
87
|
+
new (): MediaStream;
|
|
88
|
+
new (stream: MediaStream): MediaStream;
|
|
89
|
+
new (tracks: MediaStreamTrack[]): MediaStream;
|
|
90
|
+
prototype: MediaStream;
|
|
91
|
+
};
|
|
92
|
+
export declare const MediaStreamTrack: {
|
|
93
|
+
new (): MediaStreamTrack;
|
|
94
|
+
prototype: MediaStreamTrack;
|
|
95
|
+
};
|
|
96
|
+
export declare const MediaStreamTrackEvent: {
|
|
97
|
+
new (type: string, eventInitDict: MediaStreamTrackEventInit): MediaStreamTrackEvent;
|
|
98
|
+
prototype: MediaStreamTrackEvent;
|
|
99
|
+
};
|
|
100
|
+
export declare function registerGlobals(): void;
|
|
101
|
+
export { mediaDevices, permissions, RTCView, RTCPIPView, ScreenCapturePickerView, RTCAudioSession, RTCDataPacketCryptor, RTCDataPacketCryptorFactory, RTCErrorEvent, RTCFrameCryptor, RTCFrameCryptorFactory, RTCKeyProvider, startIOSPIP, stopIOSPIP, type RTCVideoViewProps, type RTCIOSPIPOptions, };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
require 'json'
|
|
2
|
+
|
|
3
|
+
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
4
|
+
|
|
5
|
+
Pod::Spec.new do |s|
|
|
6
|
+
s.name = 'livekit-react-native-webrtc'
|
|
7
|
+
s.version = package['version']
|
|
8
|
+
s.summary = package['description']
|
|
9
|
+
s.homepage = 'https://github.com/livekit/react-native-webrtc'
|
|
10
|
+
s.license = package['license']
|
|
11
|
+
s.author = 'https://github.com/livekit/react-native-webrtc/graphs/contributors'
|
|
12
|
+
s.source = { :git => 'git@github.com:livekit/react-native-webrtc.git', :tag => 'release #{s.version}' }
|
|
13
|
+
s.requires_arc = true
|
|
14
|
+
|
|
15
|
+
s.platforms = { :ios => '12.0', :osx => '10.13', :tvos => '16.0' }
|
|
16
|
+
|
|
17
|
+
s.preserve_paths = 'ios/**/*'
|
|
18
|
+
s.source_files = 'ios/**/*.{h,m}'
|
|
19
|
+
s.libraries = 'c', 'sqlite3', 'stdc++'
|
|
20
|
+
s.framework = 'AudioToolbox','AVFoundation', 'CoreAudio', 'CoreGraphics', 'CoreVideo', 'GLKit', 'VideoToolbox'
|
|
21
|
+
s.dependency 'React-Core'
|
|
22
|
+
s.dependency 'WebRTC-SDK', '=137.7151.09'
|
|
23
|
+
|
|
24
|
+
# Swift/Objective-C compatibility
|
|
25
|
+
s.pod_target_xcconfig = {
|
|
26
|
+
'DEFINES_MODULE' => 'YES'
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
end
|
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 52;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
0779C0B624D7C79B00E3B7C6 /* WebRTCModule+RTCPeerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 35A2223F1CB493C00015FD5C /* WebRTCModule+RTCPeerConnection.m */; };
|
|
11
|
+
0779C0B724D7C79B00E3B7C6 /* WebRTCModule+VideoTrackAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B56CFFF212C12EF00213CEE /* WebRTCModule+VideoTrackAdapter.m */; };
|
|
12
|
+
0779C0B824D7C79B00E3B7C6 /* WebRTCModule+RTCMediaStream.m in Sources */ = {isa = PBXBuildFile; fileRef = 35A2223D1CB493C00015FD5C /* WebRTCModule+RTCMediaStream.m */; };
|
|
13
|
+
0779C0B924D7C79B00E3B7C6 /* VideoCaptureController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BDDA6DF20C18B6B00B38B45 /* VideoCaptureController.m */; };
|
|
14
|
+
0779C0BA24D7C79B00E3B7C6 /* RTCMediaStreamTrack+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BDDA6DC20C17E7C00B38B45 /* RTCMediaStreamTrack+React.m */; };
|
|
15
|
+
0779C0BB24D7C79B00E3B7C6 /* WebRTCModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 35A222451CB493C00015FD5C /* WebRTCModule.m */; };
|
|
16
|
+
0779C0BC24D7C79B00E3B7C6 /* RCTConvert+WebRTC.m in Sources */ = {isa = PBXBuildFile; fileRef = 35EC07E51CB73DFE00F3D79C /* RCTConvert+WebRTC.m */; };
|
|
17
|
+
0779C0BD24D7C79B00E3B7C6 /* WebRTCModule+Permissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BC6C06B217F1D54005DCD37 /* WebRTCModule+Permissions.m */; };
|
|
18
|
+
0779C0BE24D7C79B00E3B7C6 /* WebRTCModule+RTCDataChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 35EC08391CB9AEE900F3D79C /* WebRTCModule+RTCDataChannel.m */; };
|
|
19
|
+
0779C0BF24D7C79B00E3B7C6 /* RTCVideoViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 35A222371CB493C00015FD5C /* RTCVideoViewManager.m */; };
|
|
20
|
+
DE312C21256D3A75005F60B4 /* WebRTC.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = DE312C20256D3A75005F60B4 /* WebRTC.xcframework */; };
|
|
21
|
+
/* End PBXBuildFile section */
|
|
22
|
+
|
|
23
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
24
|
+
0779C0C124D7C79B00E3B7C6 /* CopyFiles */ = {
|
|
25
|
+
isa = PBXCopyFilesBuildPhase;
|
|
26
|
+
buildActionMask = 2147483647;
|
|
27
|
+
dstPath = "include/$(PRODUCT_NAME)";
|
|
28
|
+
dstSubfolderSpec = 16;
|
|
29
|
+
files = (
|
|
30
|
+
);
|
|
31
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
32
|
+
};
|
|
33
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
34
|
+
|
|
35
|
+
/* Begin PBXFileReference section */
|
|
36
|
+
0779C0C524D7C79B00E3B7C6 /* libRCTWebRTC-macos.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libRCTWebRTC-macos.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
37
|
+
0B56CFFE212C12EF00213CEE /* WebRTCModule+VideoTrackAdapter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "WebRTCModule+VideoTrackAdapter.h"; sourceTree = "<group>"; };
|
|
38
|
+
0B56CFFF212C12EF00213CEE /* WebRTCModule+VideoTrackAdapter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "WebRTCModule+VideoTrackAdapter.m"; sourceTree = "<group>"; };
|
|
39
|
+
0BC6C06B217F1D54005DCD37 /* WebRTCModule+Permissions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "WebRTCModule+Permissions.m"; sourceTree = "<group>"; };
|
|
40
|
+
0BDDA6DC20C17E7C00B38B45 /* RTCMediaStreamTrack+React.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "RTCMediaStreamTrack+React.m"; sourceTree = "<group>"; };
|
|
41
|
+
0BDDA6DE20C17EA400B38B45 /* RTCMediaStreamTrack+React.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RTCMediaStreamTrack+React.h"; sourceTree = "<group>"; };
|
|
42
|
+
0BDDA6DF20C18B6B00B38B45 /* VideoCaptureController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VideoCaptureController.m; sourceTree = "<group>"; };
|
|
43
|
+
0BDDA6E120C18B8600B38B45 /* VideoCaptureController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VideoCaptureController.h; sourceTree = "<group>"; };
|
|
44
|
+
35A222361CB493C00015FD5C /* RTCVideoViewManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTCVideoViewManager.h; sourceTree = "<group>"; };
|
|
45
|
+
35A222371CB493C00015FD5C /* RTCVideoViewManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTCVideoViewManager.m; sourceTree = "<group>"; };
|
|
46
|
+
35A2223D1CB493C00015FD5C /* WebRTCModule+RTCMediaStream.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "WebRTCModule+RTCMediaStream.m"; sourceTree = "<group>"; };
|
|
47
|
+
35A2223E1CB493C00015FD5C /* WebRTCModule+RTCPeerConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "WebRTCModule+RTCPeerConnection.h"; sourceTree = "<group>"; };
|
|
48
|
+
35A2223F1CB493C00015FD5C /* WebRTCModule+RTCPeerConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "WebRTCModule+RTCPeerConnection.m"; sourceTree = "<group>"; };
|
|
49
|
+
35A222441CB493C00015FD5C /* WebRTCModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebRTCModule.h; sourceTree = "<group>"; };
|
|
50
|
+
35A222451CB493C00015FD5C /* WebRTCModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WebRTCModule.m; sourceTree = "<group>"; };
|
|
51
|
+
35EC07E41CB73DBA00F3D79C /* RCTConvert+WebRTC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+WebRTC.h"; sourceTree = "<group>"; };
|
|
52
|
+
35EC07E51CB73DFE00F3D79C /* RCTConvert+WebRTC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+WebRTC.m"; sourceTree = "<group>"; };
|
|
53
|
+
35EC08381CB9AEC400F3D79C /* WebRTCModule+RTCDataChannel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "WebRTCModule+RTCDataChannel.h"; sourceTree = "<group>"; };
|
|
54
|
+
35EC08391CB9AEE900F3D79C /* WebRTCModule+RTCDataChannel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "WebRTCModule+RTCDataChannel.m"; sourceTree = "<group>"; };
|
|
55
|
+
DE312C20256D3A75005F60B4 /* WebRTC.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = WebRTC.xcframework; path = ../apple/WebRTC.xcframework; sourceTree = "<group>"; };
|
|
56
|
+
/* End PBXFileReference section */
|
|
57
|
+
|
|
58
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
59
|
+
0779C0C024D7C79B00E3B7C6 /* Frameworks */ = {
|
|
60
|
+
isa = PBXFrameworksBuildPhase;
|
|
61
|
+
buildActionMask = 2147483647;
|
|
62
|
+
files = (
|
|
63
|
+
DE312C21256D3A75005F60B4 /* WebRTC.xcframework in Frameworks */,
|
|
64
|
+
);
|
|
65
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
66
|
+
};
|
|
67
|
+
/* End PBXFrameworksBuildPhase section */
|
|
68
|
+
|
|
69
|
+
/* Begin PBXGroup section */
|
|
70
|
+
35A222161CB493700015FD5C = {
|
|
71
|
+
isa = PBXGroup;
|
|
72
|
+
children = (
|
|
73
|
+
35A222311CB493C00015FD5C /* RCTWebRTC */,
|
|
74
|
+
35A222201CB493700015FD5C /* Products */,
|
|
75
|
+
DE312C1F256D3A75005F60B4 /* Frameworks */,
|
|
76
|
+
);
|
|
77
|
+
sourceTree = "<group>";
|
|
78
|
+
};
|
|
79
|
+
35A222201CB493700015FD5C /* Products */ = {
|
|
80
|
+
isa = PBXGroup;
|
|
81
|
+
children = (
|
|
82
|
+
0779C0C524D7C79B00E3B7C6 /* libRCTWebRTC-macos.a */,
|
|
83
|
+
);
|
|
84
|
+
name = Products;
|
|
85
|
+
sourceTree = "<group>";
|
|
86
|
+
};
|
|
87
|
+
35A222311CB493C00015FD5C /* RCTWebRTC */ = {
|
|
88
|
+
isa = PBXGroup;
|
|
89
|
+
children = (
|
|
90
|
+
35EC07E41CB73DBA00F3D79C /* RCTConvert+WebRTC.h */,
|
|
91
|
+
35EC07E51CB73DFE00F3D79C /* RCTConvert+WebRTC.m */,
|
|
92
|
+
0BDDA6DE20C17EA400B38B45 /* RTCMediaStreamTrack+React.h */,
|
|
93
|
+
0BDDA6DC20C17E7C00B38B45 /* RTCMediaStreamTrack+React.m */,
|
|
94
|
+
35A222361CB493C00015FD5C /* RTCVideoViewManager.h */,
|
|
95
|
+
35A222371CB493C00015FD5C /* RTCVideoViewManager.m */,
|
|
96
|
+
0BDDA6E120C18B8600B38B45 /* VideoCaptureController.h */,
|
|
97
|
+
0BDDA6DF20C18B6B00B38B45 /* VideoCaptureController.m */,
|
|
98
|
+
0BC6C06B217F1D54005DCD37 /* WebRTCModule+Permissions.m */,
|
|
99
|
+
35EC08381CB9AEC400F3D79C /* WebRTCModule+RTCDataChannel.h */,
|
|
100
|
+
35EC08391CB9AEE900F3D79C /* WebRTCModule+RTCDataChannel.m */,
|
|
101
|
+
35A2223D1CB493C00015FD5C /* WebRTCModule+RTCMediaStream.m */,
|
|
102
|
+
35A2223E1CB493C00015FD5C /* WebRTCModule+RTCPeerConnection.h */,
|
|
103
|
+
35A2223F1CB493C00015FD5C /* WebRTCModule+RTCPeerConnection.m */,
|
|
104
|
+
0B56CFFE212C12EF00213CEE /* WebRTCModule+VideoTrackAdapter.h */,
|
|
105
|
+
0B56CFFF212C12EF00213CEE /* WebRTCModule+VideoTrackAdapter.m */,
|
|
106
|
+
35A222441CB493C00015FD5C /* WebRTCModule.h */,
|
|
107
|
+
35A222451CB493C00015FD5C /* WebRTCModule.m */,
|
|
108
|
+
);
|
|
109
|
+
name = RCTWebRTC;
|
|
110
|
+
path = ../apple/RCTWebRTC;
|
|
111
|
+
sourceTree = SOURCE_ROOT;
|
|
112
|
+
};
|
|
113
|
+
DE312C1F256D3A75005F60B4 /* Frameworks */ = {
|
|
114
|
+
isa = PBXGroup;
|
|
115
|
+
children = (
|
|
116
|
+
DE312C20256D3A75005F60B4 /* WebRTC.xcframework */,
|
|
117
|
+
);
|
|
118
|
+
name = Frameworks;
|
|
119
|
+
sourceTree = "<group>";
|
|
120
|
+
};
|
|
121
|
+
/* End PBXGroup section */
|
|
122
|
+
|
|
123
|
+
/* Begin PBXNativeTarget section */
|
|
124
|
+
0779C0B424D7C79B00E3B7C6 /* RCTWebRTC-macos */ = {
|
|
125
|
+
isa = PBXNativeTarget;
|
|
126
|
+
buildConfigurationList = 0779C0C224D7C79B00E3B7C6 /* Build configuration list for PBXNativeTarget "RCTWebRTC-macos" */;
|
|
127
|
+
buildPhases = (
|
|
128
|
+
0779C0B524D7C79B00E3B7C6 /* Sources */,
|
|
129
|
+
0779C0C024D7C79B00E3B7C6 /* Frameworks */,
|
|
130
|
+
0779C0C124D7C79B00E3B7C6 /* CopyFiles */,
|
|
131
|
+
);
|
|
132
|
+
buildRules = (
|
|
133
|
+
);
|
|
134
|
+
dependencies = (
|
|
135
|
+
);
|
|
136
|
+
name = "RCTWebRTC-macos";
|
|
137
|
+
productName = RCTWebRTC;
|
|
138
|
+
productReference = 0779C0C524D7C79B00E3B7C6 /* libRCTWebRTC-macos.a */;
|
|
139
|
+
productType = "com.apple.product-type.library.static";
|
|
140
|
+
};
|
|
141
|
+
/* End PBXNativeTarget section */
|
|
142
|
+
|
|
143
|
+
/* Begin PBXProject section */
|
|
144
|
+
35A222171CB493700015FD5C /* Project object */ = {
|
|
145
|
+
isa = PBXProject;
|
|
146
|
+
attributes = {
|
|
147
|
+
LastUpgradeCheck = 0720;
|
|
148
|
+
};
|
|
149
|
+
buildConfigurationList = 35A2221A1CB493700015FD5C /* Build configuration list for PBXProject "RCTWebRTC" */;
|
|
150
|
+
compatibilityVersion = "Xcode 3.2";
|
|
151
|
+
developmentRegion = English;
|
|
152
|
+
hasScannedForEncodings = 0;
|
|
153
|
+
knownRegions = (
|
|
154
|
+
English,
|
|
155
|
+
en,
|
|
156
|
+
);
|
|
157
|
+
mainGroup = 35A222161CB493700015FD5C;
|
|
158
|
+
productRefGroup = 35A222201CB493700015FD5C /* Products */;
|
|
159
|
+
projectDirPath = "";
|
|
160
|
+
projectRoot = "";
|
|
161
|
+
targets = (
|
|
162
|
+
0779C0B424D7C79B00E3B7C6 /* RCTWebRTC-macos */,
|
|
163
|
+
);
|
|
164
|
+
};
|
|
165
|
+
/* End PBXProject section */
|
|
166
|
+
|
|
167
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
168
|
+
0779C0B524D7C79B00E3B7C6 /* Sources */ = {
|
|
169
|
+
isa = PBXSourcesBuildPhase;
|
|
170
|
+
buildActionMask = 2147483647;
|
|
171
|
+
files = (
|
|
172
|
+
0779C0B624D7C79B00E3B7C6 /* WebRTCModule+RTCPeerConnection.m in Sources */,
|
|
173
|
+
0779C0B724D7C79B00E3B7C6 /* WebRTCModule+VideoTrackAdapter.m in Sources */,
|
|
174
|
+
0779C0B824D7C79B00E3B7C6 /* WebRTCModule+RTCMediaStream.m in Sources */,
|
|
175
|
+
0779C0B924D7C79B00E3B7C6 /* VideoCaptureController.m in Sources */,
|
|
176
|
+
0779C0BA24D7C79B00E3B7C6 /* RTCMediaStreamTrack+React.m in Sources */,
|
|
177
|
+
0779C0BB24D7C79B00E3B7C6 /* WebRTCModule.m in Sources */,
|
|
178
|
+
0779C0BC24D7C79B00E3B7C6 /* RCTConvert+WebRTC.m in Sources */,
|
|
179
|
+
0779C0BD24D7C79B00E3B7C6 /* WebRTCModule+Permissions.m in Sources */,
|
|
180
|
+
0779C0BE24D7C79B00E3B7C6 /* WebRTCModule+RTCDataChannel.m in Sources */,
|
|
181
|
+
0779C0BF24D7C79B00E3B7C6 /* RTCVideoViewManager.m in Sources */,
|
|
182
|
+
);
|
|
183
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
184
|
+
};
|
|
185
|
+
/* End PBXSourcesBuildPhase section */
|
|
186
|
+
|
|
187
|
+
/* Begin XCBuildConfiguration section */
|
|
188
|
+
0779C0C324D7C79B00E3B7C6 /* Debug */ = {
|
|
189
|
+
isa = XCBuildConfiguration;
|
|
190
|
+
buildSettings = {
|
|
191
|
+
FRAMEWORK_SEARCH_PATHS = (
|
|
192
|
+
"$(inherited)",
|
|
193
|
+
"$(PROJECT_DIR)/../apple/",
|
|
194
|
+
);
|
|
195
|
+
HEADER_SEARCH_PATHS = "$(BUILT_PRODUCTS_DIR)/usr/local/include/**";
|
|
196
|
+
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
|
197
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
198
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
199
|
+
SDKROOT = macosx;
|
|
200
|
+
SKIP_INSTALL = YES;
|
|
201
|
+
};
|
|
202
|
+
name = Debug;
|
|
203
|
+
};
|
|
204
|
+
0779C0C424D7C79B00E3B7C6 /* Release */ = {
|
|
205
|
+
isa = XCBuildConfiguration;
|
|
206
|
+
buildSettings = {
|
|
207
|
+
FRAMEWORK_SEARCH_PATHS = (
|
|
208
|
+
"$(inherited)",
|
|
209
|
+
"$(PROJECT_DIR)/../apple/",
|
|
210
|
+
);
|
|
211
|
+
HEADER_SEARCH_PATHS = "$(BUILT_PRODUCTS_DIR)/usr/local/include/**";
|
|
212
|
+
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
|
213
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
214
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
215
|
+
SDKROOT = macosx;
|
|
216
|
+
SKIP_INSTALL = YES;
|
|
217
|
+
};
|
|
218
|
+
name = Release;
|
|
219
|
+
};
|
|
220
|
+
35A222261CB493700015FD5C /* Debug */ = {
|
|
221
|
+
isa = XCBuildConfiguration;
|
|
222
|
+
buildSettings = {
|
|
223
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
224
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
225
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
226
|
+
CLANG_ENABLE_MODULES = YES;
|
|
227
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
228
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
229
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
230
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
231
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
232
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
233
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
234
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
235
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
236
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
237
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
238
|
+
COPY_PHASE_STRIP = NO;
|
|
239
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
240
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
241
|
+
ENABLE_TESTABILITY = YES;
|
|
242
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
243
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
244
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
245
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
246
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
247
|
+
"DEBUG=1",
|
|
248
|
+
"$(inherited)",
|
|
249
|
+
);
|
|
250
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
251
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
252
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
253
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
254
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
255
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
256
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
|
257
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
258
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
259
|
+
SDKROOT = iphoneos;
|
|
260
|
+
};
|
|
261
|
+
name = Debug;
|
|
262
|
+
};
|
|
263
|
+
35A222271CB493700015FD5C /* Release */ = {
|
|
264
|
+
isa = XCBuildConfiguration;
|
|
265
|
+
buildSettings = {
|
|
266
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
267
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
268
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
269
|
+
CLANG_ENABLE_MODULES = YES;
|
|
270
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
271
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
272
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
273
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
274
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
275
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
276
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
277
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
278
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
279
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
280
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
281
|
+
COPY_PHASE_STRIP = NO;
|
|
282
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
283
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
284
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
285
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
286
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
287
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
288
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
289
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
290
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
291
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
292
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
293
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
|
294
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
295
|
+
SDKROOT = iphoneos;
|
|
296
|
+
VALIDATE_PRODUCT = YES;
|
|
297
|
+
};
|
|
298
|
+
name = Release;
|
|
299
|
+
};
|
|
300
|
+
/* End XCBuildConfiguration section */
|
|
301
|
+
|
|
302
|
+
/* Begin XCConfigurationList section */
|
|
303
|
+
0779C0C224D7C79B00E3B7C6 /* Build configuration list for PBXNativeTarget "RCTWebRTC-macos" */ = {
|
|
304
|
+
isa = XCConfigurationList;
|
|
305
|
+
buildConfigurations = (
|
|
306
|
+
0779C0C324D7C79B00E3B7C6 /* Debug */,
|
|
307
|
+
0779C0C424D7C79B00E3B7C6 /* Release */,
|
|
308
|
+
);
|
|
309
|
+
defaultConfigurationIsVisible = 0;
|
|
310
|
+
defaultConfigurationName = Release;
|
|
311
|
+
};
|
|
312
|
+
35A2221A1CB493700015FD5C /* Build configuration list for PBXProject "RCTWebRTC" */ = {
|
|
313
|
+
isa = XCConfigurationList;
|
|
314
|
+
buildConfigurations = (
|
|
315
|
+
35A222261CB493700015FD5C /* Debug */,
|
|
316
|
+
35A222271CB493700015FD5C /* Release */,
|
|
317
|
+
);
|
|
318
|
+
defaultConfigurationIsVisible = 0;
|
|
319
|
+
defaultConfigurationName = Release;
|
|
320
|
+
};
|
|
321
|
+
/* End XCConfigurationList section */
|
|
322
|
+
};
|
|
323
|
+
rootObject = 35A222171CB493700015FD5C /* Project object */;
|
|
324
|
+
}
|