Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(827)

Side by Side Diff: webrtc/examples/android/media_demo/AndroidManifest.xml

Issue 1439593002: Remove webrtc/examples/android/media_demo. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: remove empty line Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « talk/libjingle_tests.gyp ('k') | webrtc/examples/android/media_demo/README » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 android:versionCode="1" package="org.webrtc.webrtcdemo" android:versionNam e="1.07">
4 <application android:icon="@drawable/logo"
5 android:label="@string/appName"
6 android:debuggable="true">
7 <activity android:name=".WebRTCDemo"
8 android:theme="@android:style/Theme.Holo"
9 android:label="@string/appName"
10 android:screenOrientation="landscape"
11 >
12 <intent-filter>
13 <action android:name="android.intent.action.MAIN" />
14 <category android:name="android.intent.category.LAUNCHER" />
15 <action android:name="android.intent.action.HEADSET_PLUG"/>
16 </intent-filter>
17 </activity>
18 </application>
19
20 <uses-sdk android:minSdkVersion="14" />
21 <uses-permission android:name="android.permission.CAMERA"></uses-permission>
22 <uses-feature android:name="android.hardware.camera" />
23 <uses-feature android:name="android.hardware.camera.autofocus" />
24 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
25 <uses-permission android:name="android.permission.RECORD_AUDIO" />
26 <uses-permission android:name="android.permission.INTERNET" />
27 <uses-permission android:name="android.permission.WAKE_LOCK" />
28 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
29 </manifest>
OLDNEW
« no previous file with comments | « talk/libjingle_tests.gyp ('k') | webrtc/examples/android/media_demo/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698