Compile WebRTC
Get and compile WebRTC with webrtc-build-scripts.
Follow the README.md of the repo to setup develop environment on ubuntu 14.04.
Notice that you may need VPN if you have no access to google.
1 | $ source android/build.sh # setup several commands to pull and compile WebRTC code |
To compile WebRTCDemo,1
$ ninja -C /out/out_android_xx/Debug WebRTCDemo #xx stands for the arch of the target platform
To specify the arch(for example armv8), you may1
$ export WEBRTC_ARCH=armv8
By default, it supports x86, x86_64, armv7 and armv8. To compile WebRTC for only one arch, do not use build_apprtc but1
$ execute_build
Look into build.sh build_apprtc calls execute_build to compile for each arch.
1 | build_apprtc() { |
After successfully compiling WebRTC you will find apks in out_android_xx.
AppRTCDemo’s source code locates under /android/webrtc/src/webrtc/example/androidapp/
WebRTCDemo’s source code locates under /android/webrtc/src/webrtc/example/android/