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

Side by Side Diff: talk/examples/android/AndroidManifest.xml

Issue 1235563006: Move talk/examples/* to webrtc/examples. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 201508051337 Created 5 years, 4 months 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/examples/OWNERS ('k') | talk/examples/android/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 package="org.appspot.apprtc"
4 android:versionCode="1"
5 android:versionName="1.0">
6
7 <uses-feature android:name="android.hardware.camera" />
8 <uses-feature android:name="android.hardware.camera.autofocus" />
9 <uses-feature android:glEsVersion="0x00020000" android:required="true" />
10 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
11
12 <uses-permission android:name="android.permission.CAMERA" />
13 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
14 <uses-permission android:name="android.permission.RECORD_AUDIO" />
15 <uses-permission android:name="android.permission.INTERNET" />
16 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
17
18 <application android:label="@string/app_name"
19 android:icon="@drawable/ic_launcher"
20 android:allowBackup="false">
21
22 <activity android:name="ConnectActivity"
23 android:label="@string/app_name">
24 <intent-filter>
25 <action android:name="android.intent.action.MAIN"/>
26 <category android:name="android.intent.category.LAUNCHER"/>
27 </intent-filter>
28
29 <intent-filter>
30 <action android:name="android.intent.action.VIEW"/>
31 <category android:name="android.intent.category.DEFAULT"/>
32 <category android:name="android.intent.category.BROWSABLE"/>
33 <data android:scheme="https" android:host="apprtc.appspot.com"/>
34 <data android:scheme="http" android:host="apprtc.appspot.com"/>
35 </intent-filter>
36 </activity>
37
38 <activity android:name="SettingsActivity"
39 android:label="@string/settings_name">
40 </activity>
41
42 <activity android:name="CallActivity"
43 android:label="@string/app_name"
44 android:screenOrientation="fullUser"
45 android:configChanges="orientation|screenSize"
46 android:theme="@style/CallActivityTheme">
47 </activity>
48 </application>
49 </manifest>
OLDNEW
« no previous file with comments | « talk/examples/OWNERS ('k') | talk/examples/android/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698