
This reverts commit 902093493b608a1172248b85510bea291419c6ca. Reason for revert: Breaks downstream project Original change's description: > Default runner to junit4 > > Bug: chromium:868610 > Change-Id: Ifc457d8e74cf42e9ba4d21807721f86c521b35e9 > Reviewed-on: https://webrtc-review.googlesource.com/94440 > Reviewed-by: Sami Kalliomäki <sakal@webrtc.org> > Reviewed-by: Patrik Höglund <phoglund@webrtc.org> > Commit-Queue: Andrew Luo <aluo@chromium.org> > Cr-Commit-Position: refs/heads/master@{#24350} TBR=phoglund@webrtc.org,sakal@webrtc.org,jbudorick@chromium.org,aluo@chromium.org Change-Id: Ie972a2500bc15ff95d8c61a0ace681387b657ae7 No-Try: true Bug: chromium:868610 Reviewed-on: https://webrtc-review.googlesource.com/95060 Commit-Queue: Oleh Prypin <oprypin@webrtc.org> Reviewed-by: Oleh Prypin <oprypin@webrtc.org> Reviewed-by: Oleh Prypin <oprypin@google.com> Cr-Commit-Position: refs/heads/master@{#24354}
This directory holds a Java implementation of the webrtc::PeerConnection API, as well as the JNI glue C++ code that lets the Java implementation reuse the C++ implementation of the same API. To build the Java API and related tests, make sure you have a WebRTC checkout with Android specific parts. This can be used for linux development as well by configuring gn appropriately, as it is a superset of the webrtc checkout: fetch --nohooks webrtc_android gclient sync You also must generate GN projects with: --args='target_os="android" target_cpu="arm"' More information on getting the code, compiling and running the AppRTCMobile app can be found at: https://webrtc.org/native-code/android/ To use the Java API, start by looking at the public interface of org.webrtc.PeerConnection{,Factory} and the org.webrtc.PeerConnectionTest. To understand the implementation of the API, see the native code in src/jni/pc/.