I am trying to build WebRTC to get updated library file. I have successfully
built the framework.There is a demo in the source code.
At first I am trying to run demo app(AppRTCMobile) with the built framework.Problem is that some files are missing in the framework.
It is targeting to import some files from webrtc/modules/audiodevice/ios/obj and showing error for not to be able to import the files.So I can't run the demo and continue afterwards.
I followed the below link to build WebRTC:
https://webrtc.org/native-code/ios/
Can Aynone help?
Asked
Active
Viewed 506 times
2

Faruk Hossen
- 185
- 1
- 8
1 Answers
1
RTCAudioSession.h is never included in WebRTC.framwork, hope it may include soon.
Possible workaround's:
Remove/comment RTCAudioSession related stuff in ARDVideoCallViewController
OR manually add RTCAudioSession.h file in WebRTC.framwork/Headers/

Ajay
- 2,483
- 2
- 16
- 27
-
how can we add RTCAudioSession.h file manually in the project, I do add the file in the project but it shows me the error ""_OBJC_CLASS_$_RTCAudioSession", referenced from:" – Mahadev Mandale Mar 15 '18 at 13:27