| 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="{{ version_code }}" | 9 android:versionCode="{{ version_code }}" |
| 10 android:versionName="{{ version_name }}" > | 10 android:versionName="{{ version_name }}" > |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 <category android:name="android.intent.category.BROWSABLE"></cat
egory> | 29 <category android:name="android.intent.category.BROWSABLE"></cat
egory> |
| 30 <data android:scheme="https" android:host="{{ scope_url_host }}"
android:pathPattern="{{ scope_url_path }}.*"></data> | 30 <data android:scheme="https" android:host="{{ scope_url_host }}"
android:pathPattern="{{ scope_url_path }}.*"></data> |
| 31 </intent-filter> | 31 </intent-filter> |
| 32 </activity> | 32 </activity> |
| 33 <activity android:name="org.chromium.webapk.shell_apk.NotificationSettin
gsLauncherActivity"> | 33 <activity android:name="org.chromium.webapk.shell_apk.NotificationSettin
gsLauncherActivity"> |
| 34 <intent-filter> | 34 <intent-filter> |
| 35 <action android:name="android.intent.action.MAIN"/> | 35 <action android:name="android.intent.action.MAIN"/> |
| 36 <category android:name="android.intent.category.NOTIFICATION_PRE
FERENCES"/> | 36 <category android:name="android.intent.category.NOTIFICATION_PRE
FERENCES"/> |
| 37 </intent-filter> | 37 </intent-filter> |
| 38 </activity> | 38 </activity> |
| 39 <meta-data android:name="org.chromium.webapk.shell_apk.shellApkVersion"
android:value="{{ shell_apk_version }}" /> |
| 39 <meta-data android:name="org.chromium.webapk.shell_apk.runtimeHost" andr
oid:value="{{ runtime_host }}" /> | 40 <meta-data android:name="org.chromium.webapk.shell_apk.runtimeHost" andr
oid:value="{{ runtime_host }}" /> |
| 40 <meta-data android:name="org.chromium.webapk.shell_apk.startUrl" android
:value="{{ start_url }}" /> | 41 <meta-data android:name="org.chromium.webapk.shell_apk.startUrl" android
:value="{{ start_url }}" /> |
| 41 <meta-data android:name="org.chromium.webapk.shell_apk.name" android:val
ue="{{ name }}" /> | 42 <meta-data android:name="org.chromium.webapk.shell_apk.name" android:val
ue="{{ name }}" /> |
| 42 <meta-data android:name="org.chromium.webapk.shell_apk.scope" android:va
lue="{{ scope_url }}" /> | 43 <meta-data android:name="org.chromium.webapk.shell_apk.scope" android:va
lue="{{ scope_url }}" /> |
| 43 <meta-data android:name="org.chromium.webapk.shell_apk.displayMode" andr
oid:value="{{ display_mode }}" /> | 44 <meta-data android:name="org.chromium.webapk.shell_apk.displayMode" andr
oid:value="{{ display_mode }}" /> |
| 44 <meta-data android:name="org.chromium.webapk.shell_apk.orientation" andr
oid:value="{{ orientation }}" /> | 45 <meta-data android:name="org.chromium.webapk.shell_apk.orientation" andr
oid:value="{{ orientation }}" /> |
| 45 <meta-data android:name="org.chromium.webapk.shell_apk.themeColor" andro
id:value="{{ theme_color }}" /> | 46 <meta-data android:name="org.chromium.webapk.shell_apk.themeColor" andro
id:value="{{ theme_color }}" /> |
| 46 <meta-data android:name="org.chromium.webapk.shell_apk.backgroundColor"
android:value="{{ background_color }}" /> | 47 <meta-data android:name="org.chromium.webapk.shell_apk.backgroundColor"
android:value="{{ background_color }}" /> |
| 47 <meta-data android:name="org.chromium.webapk.shell_apk.iconUrl" android:
value="{{ icon_url }}" /> | 48 <meta-data android:name="org.chromium.webapk.shell_apk.iconUrl" android:
value="{{ icon_url }}" /> |
| 48 <meta-data android:name="org.chromium.webapk.shell_apk.iconMurmur2Hash"
android:value="{{ icon_murmur2_hash }}" /> | 49 <meta-data android:name="org.chromium.webapk.shell_apk.iconMurmur2Hash"
android:value="{{ icon_murmur2_hash }}" /> |
| (...skipping 21 matching lines...) Expand all Loading... |
| 70 android:process=":webapk_sandboxed_process1" | 71 android:process=":webapk_sandboxed_process1" |
| 71 android:exported="true" | 72 android:exported="true" |
| 72 tools:ignore="ExportedService"/> | 73 tools:ignore="ExportedService"/> |
| 73 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc
essService2" | 74 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc
essService2" |
| 74 android:isolatedProcess="true" | 75 android:isolatedProcess="true" |
| 75 android:process=":webapk_sandboxed_process2" | 76 android:process=":webapk_sandboxed_process2" |
| 76 android:exported="true" | 77 android:exported="true" |
| 77 tools:ignore="ExportedService"/> | 78 tools:ignore="ExportedService"/> |
| 78 </application> | 79 </application> |
| 79 </manifest> | 80 </manifest> |
| OLD | NEW |