Note that RTCErrorTypes are mapped to the following DOMException names: INTERNAL_ERROR -> OperationError UNSUPPORTED_PARAMETER -> OperationError INVALID_STATE -> InvalidStateError INVALID_MODIFICATION -> InvalidModificationError INVALID_RANGE -> RangeError Bug: webrtc:8772 Change-Id: I44e3fe2456b007b8fb227d37d74b07ba226a19e4 Reviewed-on: https://webrtc-review.googlesource.com/37141 Commit-Queue: Zach Stein <zstein@webrtc.org> Reviewed-by: Taylor Brandstetter <deadbeef@webrtc.org> Cr-Commit-Position: refs/heads/master@{#21766}
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, generate GN projects with:
--args='target_os="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 jni/.