-
Notifications
You must be signed in to change notification settings - Fork 54
Upgrade to 0.3.0
Alvaro Gil edited this page Dec 13, 2016
·
1 revision
The library has started to link with PodRTC instead of libjingle_peerconnection for WebRTC.
Also the way WebRTC Headers are included changed from importing single ones to @import WebRTC
, that means if you prefer to not link against PodRTC
which is a dynamic Framework ensure that you are linking with other dynamic Framework distribution of WebRTC.
There are just a couple of things that you need to change to make it work:
- Add
pod "PodRTC", "56.15101.0.0"
to your Podfile and removelibjingle_peerconnection
pod. - To being able to submit to Apple Store you will need to get rid of non
armv7
andarm64
archs, you can easily do it by adding aRun script
to your XCodeBuild phases
settings. See this post for more information: Stripping unwanted architectures from dynamic libraries in XCode