| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 6 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 xmlns:tools="http://schemas.android.com/tools" | 7 xmlns:tools="http://schemas.android.com/tools" |
| 8 package="{{ manifest_package }}" | 8 package="{{ manifest_package }}" |
| 9 android:versionCode="1" | 9 android:versionCode="1" |
| 10 android:versionName="1.0" > | 10 android:versionName="1.0" > |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 </activity> | 32 </activity> |
| 33 <meta-data android:name="runtimeHost" android:value="{{ runtime_host }}"
/> | 33 <meta-data android:name="runtimeHost" android:value="{{ runtime_host }}"
/> |
| 34 <meta-data android:name="startUrl" android:value="{{ start_url }}" /> | 34 <meta-data android:name="startUrl" android:value="{{ start_url }}" /> |
| 35 <meta-data android:name="name" android:value="{{ name }}" /> | 35 <meta-data android:name="name" android:value="{{ name }}" /> |
| 36 <meta-data android:name="scope" android:value="{{ scope_url }}" /> | 36 <meta-data android:name="scope" android:value="{{ scope_url }}" /> |
| 37 <meta-data android:name="displayMode" android:value="{{ display_mode }}"
/> | 37 <meta-data android:name="displayMode" android:value="{{ display_mode }}"
/> |
| 38 <meta-data android:name="orientation" android:value="{{ orientation }}"
/> | 38 <meta-data android:name="orientation" android:value="{{ orientation }}"
/> |
| 39 <meta-data android:name="themeColor" android:value="{{ theme_color }}" /
> | 39 <meta-data android:name="themeColor" android:value="{{ theme_color }}" /
> |
| 40 <meta-data android:name="backgroundColor" android:value="{{ background_c
olor }}" /> | 40 <meta-data android:name="backgroundColor" android:value="{{ background_c
olor }}" /> |
| 41 <meta-data android:name="iconUrl" android:value="{{ icon_url }}" /> | 41 <meta-data android:name="iconUrl" android:value="{{ icon_url }}" /> |
| 42 <meta-data android:name="webManifestUrl" android:value="{{ web_manifest_
url }}" /> |
| 42 <service | 43 <service |
| 43 android:name="org.chromium.webapk.shell_apk.WebApkServiceFactory" | 44 android:name="org.chromium.webapk.shell_apk.WebApkServiceFactory" |
| 44 android:exported="true" | 45 android:exported="true" |
| 45 tools:ignore="ExportedService"> | 46 tools:ignore="ExportedService"> |
| 46 <intent-filter> | 47 <intent-filter> |
| 47 <action android:name="android.intent.action.MAIN" /> | 48 <action android:name="android.intent.action.MAIN" /> |
| 48 <category android:name="android.intent.category.WEBAPK_API" /> | 49 <category android:name="android.intent.category.WEBAPK_API" /> |
| 49 </intent-filter> | 50 </intent-filter> |
| 50 </service> | 51 </service> |
| 51 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" | 52 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 62 android:process=":webapk_sandboxed_process1" | 63 android:process=":webapk_sandboxed_process1" |
| 63 android:exported="true" | 64 android:exported="true" |
| 64 tools:ignore="ExportedService"/> | 65 tools:ignore="ExportedService"/> |
| 65 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc
essService2" | 66 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc
essService2" |
| 66 android:isolatedProcess="true" | 67 android:isolatedProcess="true" |
| 67 android:process=":webapk_sandboxed_process2" | 68 android:process=":webapk_sandboxed_process2" |
| 68 android:exported="true" | 69 android:exported="true" |
| 69 tools:ignore="ExportedService"/> | 70 tools:ignore="ExportedService"/> |
| 70 </application> | 71 </application> |
| 71 </manifest> | 72 </manifest> |
| OLD | NEW |