OLD | NEW |
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. | 8 <!-- Please keep this in sync with the downstream android_webview manifest. |
9 --> | 9 --> |
10 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 10 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
11 package="com.android.webview"> | 11 package="{{package|default('com.android.webview')}}"> |
12 <uses-sdk android:minSdkVersion="21" | 12 <uses-sdk android:minSdkVersion="{{minsdk|default(21)}}" |
13 android:targetSdkVersion="21"> | 13 android:targetSdkVersion="{{targetsdk|default(21)}}"> |
14 </uses-sdk> | 14 </uses-sdk> |
15 | 15 |
16 <uses-feature android:name="android.hardware.touchscreen" | 16 <uses-feature android:name="android.hardware.touchscreen" |
17 android:required="false"/> | 17 android:required="false"/> |
18 | 18 |
19 <application android:label="Android System WebView" | 19 <application android:label="Android System WebView" |
20 android:icon="@drawable/icon_webview" | 20 android:icon="@drawable/icon_webview" |
21 android:multiArch="true"> | 21 android:multiArch="true"> |
22 <activity android:name="com.android.webview.chromium.LicenseActivity" | 22 <activity android:name="com.android.webview.chromium.LicenseActivity" |
23 android:label="@string/license_activity_title" | 23 android:label="@string/license_activity_title" |
24 > | 24 > |
25 <intent-filter> | 25 <intent-filter> |
26 <action android:name="android.settings.WEBVIEW_LICENSE" /> | 26 <action android:name="android.settings.WEBVIEW_LICENSE" /> |
27 <category android:name="android.intent.category.DEFAULT" /> | 27 <category android:name="android.intent.category.DEFAULT" /> |
28 </intent-filter> | 28 </intent-filter> |
29 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTRO
LLED" | 29 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTRO
LLED" |
30 android:value="true" /> | 30 android:value="true" /> |
31 </activity> | 31 </activity> |
32 <provider android:name="com.android.webview.chromium.LicenseContentProvi
der" | 32 <provider android:name="com.android.webview.chromium.LicenseContentProvi
der" |
33 android:exported="true" | 33 android:exported="true" |
34 android:authorities="com.android.webview.chromium.LicenseConte
ntProvider" /> | 34 android:authorities="com.android.webview.chromium.LicenseConte
ntProvider" /> |
35 </application> | 35 </application> |
36 </manifest> | 36 </manifest> |
OLD | NEW |