BUG=N/A R=andrew@webrtc.org, fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/7269004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5400 4adac7df-926f-26a2-2b94-8c16560cd09d
23 lines
992 B
XML
23 lines
992 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:versionCode="1" package="org.webrtc.app" android:versionName="1.07">
|
|
<application android:icon="@drawable/logo"
|
|
android:label="@string/app_name"
|
|
android:debuggable="true">
|
|
<activity android:name=".OpenSlDemo"
|
|
android:label="@string/app_name"
|
|
android:screenOrientation="landscape"
|
|
>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
<action android:name="android.intent.action.HEADSET_PLUG"/>
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
<uses-sdk android:minSdkVersion="14" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
</manifest>
|