Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
res/ | 03-May-2024 | - | 833 | 695 | ||
src/org/appspot/apprtc/ | 03-May-2024 | - | 7,894 | 5,955 | ||
third_party/autobanh/ | 03-May-2024 | - | 220 | 183 | ||
AndroidManifest.xml | D | 03-May-2024 | 2.8 KiB | 61 | 52 | |
OWNERS.webrtc | D | 03-May-2024 | 35 | 3 | 2 | |
README | D | 03-May-2024 | 1 KiB | 24 | 17 | |
ant.properties | D | 03-May-2024 | 698 | 18 | 13 | |
build.xml | D | 03-May-2024 | 3.8 KiB | 93 | 16 | |
project.properties | D | 03-May-2024 | 601 | 17 | 14 | |
start_loopback_stubbed_camera_saved_video_out.py | D | 03-May-2024 | 3.3 KiB | 125 | 84 |
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