• Home
Name Date Size #Lines LOC

..--

res/03-May-2024-833695

src/org/appspot/apprtc/03-May-2024-7,8945,955

third_party/autobanh/03-May-2024-220183

AndroidManifest.xmlD03-May-20242.8 KiB6152

OWNERS.webrtcD03-May-202435 32

READMED03-May-20241 KiB2417

ant.propertiesD03-May-2024698 1813

build.xmlD03-May-20243.8 KiB9316

project.propertiesD03-May-2024601 1714

start_loopback_stubbed_camera_saved_video_out.pyD03-May-20243.3 KiB12584

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