| 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 xmlns:tools="http://schemas.android.com/tools" | 9 xmlns:tools="http://schemas.android.com/tools" |
| 10 package="{{package|default('com.android.webview')}}"> | 10 package="{{package|default('com.android.webview')}}"> |
| 11 <uses-sdk android:minSdkVersion="{{minsdk|default(21)}}" | 11 <uses-sdk android:minSdkVersion="{{minsdk|default(21)}}" |
| 12 android:targetSdkVersion="{{targetsdk|default(24)}}"> | 12 android:targetSdkVersion="{{targetsdk|default(24)}}"> |
| 13 </uses-sdk> | 13 </uses-sdk> |
| 14 | 14 |
| 15 <uses-feature android:name="android.hardware.touchscreen" | 15 <uses-feature android:name="android.hardware.touchscreen" |
| 16 android:required="false"/> | 16 android:required="false"/> |
| 17 | 17 |
| 18 <uses-permission android:name="android.permission.INTERNET"/> | 18 <uses-permission android:name="android.permission.INTERNET"/> |
| 19 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 19 | 20 |
| 20 <application android:label="Android System WebView" | 21 <application android:label="Android System WebView" |
| 21 android:icon="@drawable/icon_webview" | 22 android:icon="@drawable/icon_webview" |
| 22 android:multiArch="true" | 23 android:multiArch="true" |
| 23 android:use32bitAbi="true"> | 24 android:use32bitAbi="true"> |
| 24 {# This part is shared between stand-alone WebView and Monochrome #} | 25 {# This part is shared between stand-alone WebView and Monochrome #} |
| 25 {% macro common(manifest_package, webview_lib) %} | 26 {% macro common(manifest_package, webview_lib) %} |
| 26 <activity android:name="com.android.webview.chromium.LicenseActivity
" | 27 <activity android:name="com.android.webview.chromium.LicenseActivity
" |
| 27 android:label="@string/license_activity_title"> | 28 android:label="@string/license_activity_title"> |
| 28 <intent-filter> | 29 <intent-filter> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 54 android:process=":sandboxed_process{{ i }}" | 55 android:process=":sandboxed_process{{ i }}" |
| 55 android:isolatedProcess="true" | 56 android:isolatedProcess="true" |
| 56 android:exported="true" | 57 android:exported="true" |
| 57 android:externalService="true" | 58 android:externalService="true" |
| 58 tools:ignore="ExportedService" /> | 59 tools:ignore="ExportedService" /> |
| 59 {% endfor %} | 60 {% endfor %} |
| 60 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" | 61 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" |
| 61 android:value="0"/> | 62 android:value="0"/> |
| 62 </application> | 63 </application> |
| 63 </manifest> | 64 </manifest> |
| OLD | NEW |