From 451745ec055314024f295487b6f34b49af2a5fcb Mon Sep 17 00:00:00 2001 From: "henrike@webrtc.org" Date: Thu, 12 Dec 2013 16:55:37 +0000 Subject: Complete rewrite of demo application. BUG=2122 R=andrew@webrtc.org, fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/3669004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5273 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/examples/android/media_demo/README | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 webrtc/examples/android/media_demo/README (limited to 'webrtc/examples/android/media_demo/README') diff --git a/webrtc/examples/android/media_demo/README b/webrtc/examples/android/media_demo/README new file mode 100644 index 0000000000..af88721511 --- /dev/null +++ b/webrtc/examples/android/media_demo/README @@ -0,0 +1,24 @@ +This directory contains a sample app for sending and receiving video and audio +on Android. It further lets you enable and disable some call quality +enhancements such as echo cancellation, noise suppression etc. + +Prerequisites: +- Make sure gclient is checking out tools necessary to target Android: your + .gclient file should contain a line like: + target_os = ['android'] + Make sure to re-run gclient sync after adding this to download the tools. +- Env vars need to be set up to target Android; easiest way to do this is to run + (from the libjingle trunk directory): + . ./build/android/envsetup.sh + Note that this clobbers any previously-set $GYP_DEFINES so it must be done + before the next item. +- Set up webrtc-related GYP variables: + export GYP_DEFINES="$GYP_DEFINES java_home=" +- Finally, run "gclient runhooks" to generate Android-targeting .ninja files. + +Example of building the app: +cd /trunk +ninja -C out/Debug WebRTCDemo + +It can then be installed and run on the device: +adb install -r out/Debug/WebRTCDemo-debug.apk \ No newline at end of file -- cgit v1.2.3 From 855acf72d0ce243cd9a91cf08859115e616e111b Mon Sep 17 00:00:00 2001 From: Per Date: Wed, 25 Mar 2015 14:32:22 +0100 Subject: Remove video from WebRTC Android example. This is in preparation to remove the use of the old Video Api and the use of the old video capture module on Android in particular. R=henrika@webrtc.org, mflodman@webrtc.org, pbos@webrtc.org Review URL: https://webrtc-codereview.appspot.com/44819004 Cr-Commit-Position: refs/heads/master@{#8856} --- webrtc/examples/android/media_demo/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webrtc/examples/android/media_demo/README') diff --git a/webrtc/examples/android/media_demo/README b/webrtc/examples/android/media_demo/README index af88721511..af71f38f46 100644 --- a/webrtc/examples/android/media_demo/README +++ b/webrtc/examples/android/media_demo/README @@ -1,4 +1,4 @@ -This directory contains a sample app for sending and receiving video and audio +This directory contains a sample app for sending and receiving audio on Android. It further lets you enable and disable some call quality enhancements such as echo cancellation, noise suppression etc. @@ -21,4 +21,4 @@ cd /trunk ninja -C out/Debug WebRTCDemo It can then be installed and run on the device: -adb install -r out/Debug/WebRTCDemo-debug.apk \ No newline at end of file +adb install -r out/Debug/WebRTCDemo-debug.apk -- cgit v1.2.3