Rename ViEAndroidDemo to WebRTCDemo

Desription:
This CL will change VideoEngine application name to ViEAndroidDemo. This
is the first step to refactor videoengine test application on android.

"ViE" is not a proper name because the app also supports audio. And it's good
to put WebRTC in application name.

BUG=
TEST=build on all trybots
Review URL: https://webrtc-codereview.appspot.com/576006

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2204 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
leozwang@webrtc.org 2012-05-09 15:23:52 +00:00
parent f6edfeff63
commit de6a6b40fa
5 changed files with 6 additions and 6 deletions

View File

@ -13,7 +13,7 @@ include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := tests
LOCAL_SRC_FILES := \
src/org/webrtc/videoengineapp/ViEAndroidDemo.java \
src/org/webrtc/videoengineapp/WebRTCDemo.java \
src/org/webrtc/videoengineapp/ViEAndroidJavaAPI.java \
src/org/webrtc/videoengineapp/IViEAndroidCallback.java \
src/org/webrtc/videoengine/CaptureCapabilityAndroid.java \

View File

@ -4,7 +4,7 @@
<application android:icon="@drawable/logo"
android:label="@string/app_name"
android:debuggable="true">
<activity android:name=".ViEAndroidDemo"
<activity android:name=".WebRTCDemo"
android:label="@string/app_name"
android:configChanges="keyboardHidden|orientation"
>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="ViEAndroidDemo" default="help">
<project name="WebRTCDemo" default="help">
<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">ViEDemo</string>
<string name="app_name">WebRTC</string>
<string name="error">Error</string>
<string name="errorCamera">Camera Error</string>
<string name="codectype_prompt">Choose a codec type</string>

View File

@ -50,7 +50,7 @@ import android.widget.AdapterView.OnItemSelectedListener;
import android.widget.TabHost.TabSpec;
import android.view.OrientationEventListener;
public class ViEAndroidDemo extends TabActivity implements IViEAndroidCallback,
public class WebRTCDemo extends TabActivity implements IViEAndroidCallback,
View.OnClickListener,
OnItemSelectedListener {
private ViEAndroidJavaAPI ViEAndroidAPI = null;
@ -552,7 +552,7 @@ public class ViEAndroidDemo extends TabActivity implements IViEAndroidCallback,
private void SetupVoE() {
// Create VoiceEngine
// Error logging is done in native API wrapper
ViEAndroidAPI.VoE_Create(this);
ViEAndroidAPI.VoE_Create();
// Initialize
if (0 != ViEAndroidAPI.VoE_Init(enableTrace)) {