OLD | NEW |
1 This directory holds a Java implementation of the webrtc::PeerConnection API, as | 1 This directory holds a Java implementation of the webrtc::PeerConnection API, as |
2 well as the JNI glue C++ code that lets the Java implementation reuse the C++ | 2 well as the JNI glue C++ code that lets the Java implementation reuse the C++ |
3 implementation of the same API. | 3 implementation of the same API. |
4 | 4 |
5 To build the Java API and related tests, generate GN projects with: | 5 To build the Java API and related tests, generate GN projects with: |
6 --args='target_os="android"' | 6 --args='target_os="android"' |
7 | 7 |
8 To use the Java API, start by looking at the public interface of | 8 To use the Java API, start by looking at the public interface of |
9 org.webrtc.PeerConnection{,Factory} and the org.webrtc.PeerConnectionTest. | 9 org.webrtc.PeerConnection{,Factory} and the org.webrtc.PeerConnectionTest. |
10 | 10 |
11 To understand the implementation of the API, see the native code in jni/. | 11 To understand the implementation of the API, see the native code in jni/. |
OLD | NEW |