Name Date Size #Lines LOC

..--

res/H25-Apr-2025-787655

src/org/appspot/apprtc/H25-Apr-2025-7,8075,877

third_party/autobanh/H25-Apr-2025-220183

AndroidManifest.xmlH A D25-Apr-20252.8 KiB6152

OWNERS.webrtcH A D25-Apr-202535 32

READMEH A D25-Apr-20251 KiB2417

ant.propertiesH A D25-Apr-2025698 1813

build.xmlH A D25-Apr-20253.8 KiB9316

project.propertiesH A D25-Apr-2025601 1714

start_loopback_stubbed_camera_saved_video_out.pyH A D25-Apr-20253.7 KiB12886

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