This reverts commit 59216ec4a4151b1ba5478c8f2b5c9f01f4683d7f. Reason for revert: forces all logs to have identical tag Original change's description: > Injectable logging > > Allows passing a Loggable to PCFactory.initializationOptions, which > is then injected to Logging.java and logging.h. Future log messages > in both Java and native will then be passed to this Loggable. > > Bug: webrtc:9225 > Change-Id: I2ff693380639448301a78a93dc11d3a0106f0967 > Reviewed-on: https://webrtc-review.googlesource.com/73243 > Commit-Queue: Paulina Hensman <phensman@webrtc.org> > Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> > Reviewed-by: Sami Kalliomäki <sakal@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#23241} TBR=magjed@webrtc.org,sakal@webrtc.org,kwiberg@webrtc.org,phensman@webrtc.org Change-Id: I27c9587238325b69b26166434740869021b7db8a No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: webrtc:9225 Reviewed-on: https://webrtc-review.googlesource.com/76885 Reviewed-by: Alex Glaznev <glaznev@webrtc.org> Commit-Queue: Alex Glaznev <glaznev@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23253}
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/.