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

Side by Side Diff: webrtc/examples/androidapp/AndroidManifest.xml

Issue 1883923003: Use the new appr.tc URL (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | webrtc/examples/androidapp/README » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="org.appspot.apprtc" 3 package="org.appspot.apprtc"
4 android:versionCode="1" 4 android:versionCode="1"
5 android:versionName="1.0"> 5 android:versionName="1.0">
6 6
7 <uses-feature android:name="android.hardware.camera" /> 7 <uses-feature android:name="android.hardware.camera" />
8 <uses-feature android:name="android.hardware.camera.autofocus" /> 8 <uses-feature android:name="android.hardware.camera.autofocus" />
9 <uses-feature android:glEsVersion="0x00020000" android:required="true" /> 9 <uses-feature android:glEsVersion="0x00020000" android:required="true" />
10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" /> 10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
(...skipping 14 matching lines...) Expand all
25 android:label="@string/app_name"> 25 android:label="@string/app_name">
26 <intent-filter> 26 <intent-filter>
27 <action android:name="android.intent.action.MAIN"/> 27 <action android:name="android.intent.action.MAIN"/>
28 <category android:name="android.intent.category.LAUNCHER"/> 28 <category android:name="android.intent.category.LAUNCHER"/>
29 </intent-filter> 29 </intent-filter>
30 30
31 <intent-filter> 31 <intent-filter>
32 <action android:name="android.intent.action.VIEW"/> 32 <action android:name="android.intent.action.VIEW"/>
33 <category android:name="android.intent.category.DEFAULT"/> 33 <category android:name="android.intent.category.DEFAULT"/>
34 <category android:name="android.intent.category.BROWSABLE"/> 34 <category android:name="android.intent.category.BROWSABLE"/>
35 <data android:scheme="https" android:host="apprtc.appspot.com"/> 35 <data android:scheme="https" android:host="appr.tc"/>
36 <data android:scheme="http" android:host="apprtc.appspot.com"/> 36 <data android:scheme="http" android:host="appr.tc"/>
37 </intent-filter> 37 </intent-filter>
38 </activity> 38 </activity>
39 39
40 <activity android:name="SettingsActivity" 40 <activity android:name="SettingsActivity"
41 android:label="@string/settings_name"> 41 android:label="@string/settings_name">
42 </activity> 42 </activity>
43 43
44 <activity android:name="CallActivity" 44 <activity android:name="CallActivity"
45 android:label="@string/app_name" 45 android:label="@string/app_name"
46 android:screenOrientation="fullUser" 46 android:screenOrientation="fullUser"
47 android:configChanges="orientation|screenSize" 47 android:configChanges="orientation|screenSize"
48 android:theme="@style/CallActivityTheme"> 48 android:theme="@style/CallActivityTheme">
49 </activity> 49 </activity>
50 </application> 50 </application>
51 </manifest> 51 </manifest>
OLDNEW
« no previous file with comments | « no previous file | webrtc/examples/androidapp/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698