This reverts commit e598e6bff9528f77dc9f4fb3a5954ec5fb6790b0. Reason for revert: Main suspect of increased Android tests flakiness Original change's description: > Run robolectric tests for Android on several Android API versions > > Depends on https://bugs.chromium.org/p/chromium/issues/detail?id=901324 > > Bug: webrtc:9955 > Change-Id: I5e3f4c05b8258b90728644846f425ee131fda8d4 > Reviewed-on: https://webrtc-review.googlesource.com/c/109160 > Reviewed-by: Artem Titarenko <artit@webrtc.org> > Reviewed-by: Sami Kalliomäki <sakal@webrtc.org> > Reviewed-by: Patrik Höglund <phoglund@webrtc.org> > Commit-Queue: Artem Titarenko <artit@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#25582} TBR=phoglund@webrtc.org,magjed@webrtc.org,sakal@webrtc.org,artit@webrtc.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: webrtc:9955 Change-Id: I62c4c9c3238f777b6017701bc1332d8661308f9c Reviewed-on: https://webrtc-review.googlesource.com/c/110609 Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25595}
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/.