| 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 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 package="{{package|default('com.android.webview')}}"> | 9 package="{{package|default('com.android.webview')}}"> |
| 10 <uses-sdk android:minSdkVersion="{{minsdk|default(21)}}" | 10 <uses-sdk android:minSdkVersion="{{minsdk|default(21)}}" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 <intent-filter> | 23 <intent-filter> |
| 24 <action android:name="android.settings.WEBVIEW_LICENSE" /> | 24 <action android:name="android.settings.WEBVIEW_LICENSE" /> |
| 25 <category android:name="android.intent.category.DEFAULT" /> | 25 <category android:name="android.intent.category.DEFAULT" /> |
| 26 </intent-filter> | 26 </intent-filter> |
| 27 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTRO
LLED" | 27 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTRO
LLED" |
| 28 android:value="true" /> | 28 android:value="true" /> |
| 29 </activity> | 29 </activity> |
| 30 <provider android:name="com.android.webview.chromium.LicenseContentProvi
der" | 30 <provider android:name="com.android.webview.chromium.LicenseContentProvi
der" |
| 31 android:exported="true" | 31 android:exported="true" |
| 32 android:authorities="com.android.webview.chromium.LicenseConte
ntProvider" /> | 32 android:authorities="com.android.webview.chromium.LicenseConte
ntProvider" /> |
| 33 <meta-data android:name="com.android.webview.WebViewLibrary" |
| 34 android:value="libwebviewchromium.so" /> |
| 33 </application> | 35 </application> |
| 34 </manifest> | 36 </manifest> |
| OLD | NEW |