├── .gitattributes ├── README.md ├── android ├── README.md ├── arm64-v8a │ └── libwebrtc.aar ├── armeabi-v7a │ └── libwebrtc.aar └── x86 │ └── libwebrtc.aar ├── ios ├── README.md └── WebRTC.framework.tar.gz ├── linux ├── README.md └── libwebrtc.a └── osx ├── README.md └── WebRTC.framework.tar.gz /.gitattributes: -------------------------------------------------------------------------------- 1 | ios/WebRTC.framework.tar.gz filter=lfs diff=lfs merge=lfs -text 2 | linux/libwebrtc.a filter=lfs diff=lfs merge=lfs -text 3 | osx/WebRTC.framework.tar.gz filter=lfs diff=lfs merge=lfs -text 4 | android/armeabi-v7a/libwebrtc.aar filter=lfs diff=lfs merge=lfs -text 5 | android/arm64-v8a/libwebrtc.aar filter=lfs diff=lfs merge=lfs -text 6 | android/x86/libwebrtc.aar filter=lfs diff=lfs merge=lfs -text 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # webrtc-build-release 2 | 3 | webrtc build release lib. 4 | 5 | build from [https://github.com/notedit/webrtc-build](https://github.com/notedit/webrtc-build) 6 | -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedit/webrtc-build-release/901b7c51e3a98b7e8cbd1ee2a7e7880dc76616bd/android/README.md -------------------------------------------------------------------------------- /android/arm64-v8a/libwebrtc.aar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7600a0cf8a2e9f350f1f1072b2ca6c7647d3d5f28bf8b36057e6b38749cfc5af 3 | size 6904668 4 | -------------------------------------------------------------------------------- /android/armeabi-v7a/libwebrtc.aar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8df2fd62c1ac1e6783eddf8c4bf29dd3a1b4a128b7fcf96680f111fe0462b620 3 | size 4634320 4 | -------------------------------------------------------------------------------- /android/x86/libwebrtc.aar: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eba91e5ec6f6c5a8cf293eb0e84918e620349a09203f0c91606d09b9c15955f1 3 | size 7246804 4 | -------------------------------------------------------------------------------- /ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedit/webrtc-build-release/901b7c51e3a98b7e8cbd1ee2a7e7880dc76616bd/ios/README.md -------------------------------------------------------------------------------- /ios/WebRTC.framework.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedit/webrtc-build-release/901b7c51e3a98b7e8cbd1ee2a7e7880dc76616bd/ios/WebRTC.framework.tar.gz -------------------------------------------------------------------------------- /linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedit/webrtc-build-release/901b7c51e3a98b7e8cbd1ee2a7e7880dc76616bd/linux/README.md -------------------------------------------------------------------------------- /linux/libwebrtc.a: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c674038c9d5d7876d556cfba570cde2991e3155f60fb1695bb630064ccf88fd5 3 | size 33593092 4 | -------------------------------------------------------------------------------- /osx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedit/webrtc-build-release/901b7c51e3a98b7e8cbd1ee2a7e7880dc76616bd/osx/README.md -------------------------------------------------------------------------------- /osx/WebRTC.framework.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedit/webrtc-build-release/901b7c51e3a98b7e8cbd1ee2a7e7880dc76616bd/osx/WebRTC.framework.tar.gz --------------------------------------------------------------------------------