Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
res/ | H | 25-Apr-2025 | - | 787 | 655 | |
src/org/appspot/apprtc/ | H | 25-Apr-2025 | - | 7,807 | 5,877 | |
third_party/autobanh/ | H | 25-Apr-2025 | - | 220 | 183 | |
AndroidManifest.xml | H A D | 25-Apr-2025 | 2.8 KiB | 61 | 52 | |
OWNERS.webrtc | H A D | 25-Apr-2025 | 35 | 3 | 2 | |
README | H A D | 25-Apr-2025 | 1 KiB | 24 | 17 | |
ant.properties | H A D | 25-Apr-2025 | 698 | 18 | 13 | |
build.xml | H A D | 25-Apr-2025 | 3.8 KiB | 93 | 16 | |
project.properties | H A D | 25-Apr-2025 | 601 | 17 | 14 | |
start_loopback_stubbed_camera_saved_video_out.py | H A D | 25-Apr-2025 | 3.7 KiB | 128 | 86 |
README
1This directory contains an example Android client for https://appr.tc 2 3Prerequisites: 4- "Getting the code", "Compiling", and "Using the Bundled Android SDK/NDK" 5 on http://www.webrtc.org/native-code/android 6 7Example of building & using the app: 8 9cd <path/to/webrtc>/src 10ninja -C out/Default AppRTCMobile 11adb install -r out/Default/apks/AppRTCMobile.apk 12 13In desktop chrome, navigate to https://appr.tc and note the r=<NNN> room 14this redirects to or navigate directly to https://appr.tc/r/<NNN> with 15your own room number. Launch AppRTC on the device and add same <NNN> into the room name list. 16 17You can also run application from a command line to connect to the first room in a list: 18adb shell am start -n org.appspot.apprtc/.ConnectActivity -a android.intent.action.VIEW 19This should result in the app launching on Android and connecting to the 3-dot-apprtc 20page displayed in the desktop browser. 21To run loopback test execute following command: 22adb shell am start -n org.appspot.apprtc/.ConnectActivity -a android.intent.action.VIEW --ez "org.appspot.apprtc.LOOPBACK" true 23 24