| 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(23)}}"> | 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 <application android:label="Android System WebView" | 18 <application android:label="Android System WebView" |
| 19 android:icon="@drawable/icon_webview" | 19 android:icon="@drawable/icon_webview" |
| 20 android:multiArch="true"> | 20 android:multiArch="true"> |
| 21 {# This part is shared between stand-alone WebView and Monochrome #} | 21 {# This part is shared between stand-alone WebView and Monochrome #} |
| 22 {% macro common(manifest_package, webview_lib) %} | 22 {% macro common(manifest_package, webview_lib) %} |
| (...skipping 12 matching lines...) Expand all Loading... |
| 35 <meta-data android:name="com.android.webview.WebViewLibrary" | 35 <meta-data android:name="com.android.webview.WebViewLibrary" |
| 36 android:value="{{ webview_lib }}" /> | 36 android:value="{{ webview_lib }}" /> |
| 37 {% endmacro %} | 37 {% endmacro %} |
| 38 {{ common(package|default('com.android.webview'), 'libwebviewchromium.so
') }} | 38 {{ common(package|default('com.android.webview'), 'libwebviewchromium.so
') }} |
| 39 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" | 39 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" |
| 40 android:value="1"/> | 40 android:value="1"/> |
| 41 <service android:name="org.chromium.content.app.SandboxedProcessService0
" | 41 <service android:name="org.chromium.content.app.SandboxedProcessService0
" |
| 42 android:process=":sandboxed_process0" | 42 android:process=":sandboxed_process0" |
| 43 android:isolatedProcess="true" | 43 android:isolatedProcess="true" |
| 44 android:exported="true" | 44 android:exported="true" |
| 45 tools:ignore="ExportedService" | 45 android:externalService="true" |
| 46 {{sandboxed_service_extra_flags|default('')}} /> | 46 tools:ignore="ExportedService" /> |
| 47 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" | 47 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" |
| 48 android:value="0"/> | 48 android:value="0"/> |
| 49 </application> | 49 </application> |
| 50 </manifest> | 50 </manifest> |
| OLD | NEW |