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

Side by Side Diff: android_webview/apk/java/AndroidManifest.xml

Issue 1054543002: Move android_app_version_* into an inner variables dict. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | build/common.gypi » ('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 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this 3 Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this
4 source code is governed by a BSD-style license that can be found in the 4 source code is governed by a BSD-style license that can be found in the
5 LICENSE file. 5 LICENSE file.
6 --> 6 -->
7 7
8 <!-- Please keep this in sync with the downstream android_webview manifest.
9 -->
10 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
11 package="{{package|default('com.android.webview')}}"> 9 package="{{package|default('com.android.webview')}}">
12 <uses-sdk android:minSdkVersion="{{minsdk|default(21)}}" 10 <uses-sdk android:minSdkVersion="{{minsdk|default(21)}}"
13 android:targetSdkVersion="{{targetsdk|default(21)}}"> 11 android:targetSdkVersion="{{targetsdk|default(21)}}">
14 </uses-sdk> 12 </uses-sdk>
15 13
16 <uses-feature android:name="android.hardware.touchscreen" 14 <uses-feature android:name="android.hardware.touchscreen"
17 android:required="false"/> 15 android:required="false"/>
18 16
19 <application android:label="Android System WebView" 17 <application android:label="Android System WebView"
20 android:icon="@drawable/icon_webview" 18 android:icon="@drawable/icon_webview"
21 android:multiArch="true"> 19 android:multiArch="true">
22 <activity android:name="com.android.webview.chromium.LicenseActivity" 20 <activity android:name="com.android.webview.chromium.LicenseActivity"
23 android:label="@string/license_activity_title" 21 android:label="@string/license_activity_title"
24 > 22 >
25 <intent-filter> 23 <intent-filter>
26 <action android:name="android.settings.WEBVIEW_LICENSE" /> 24 <action android:name="android.settings.WEBVIEW_LICENSE" />
27 <category android:name="android.intent.category.DEFAULT" /> 25 <category android:name="android.intent.category.DEFAULT" />
28 </intent-filter> 26 </intent-filter>
29 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTRO LLED" 27 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTRO LLED"
30 android:value="true" /> 28 android:value="true" />
31 </activity> 29 </activity>
32 <provider android:name="com.android.webview.chromium.LicenseContentProvi der" 30 <provider android:name="com.android.webview.chromium.LicenseContentProvi der"
33 android:exported="true" 31 android:exported="true"
34 android:authorities="com.android.webview.chromium.LicenseConte ntProvider" /> 32 android:authorities="com.android.webview.chromium.LicenseConte ntProvider" />
35 </application> 33 </application>
36 </manifest> 34 </manifest>
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698