| 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 13 matching lines...) Expand all Loading... |
| 24 <action android:name="android.intent.action.MAIN" /> | 24 <action android:name="android.intent.action.MAIN" /> |
| 25 <category android:name="android.intent.category.LAUNCHER" /> | 25 <category android:name="android.intent.category.LAUNCHER" /> |
| 26 </intent-filter> | 26 </intent-filter> |
| 27 <intent-filter> | 27 <intent-filter> |
| 28 <action android:name="android.intent.action.VIEW"></action> | 28 <action android:name="android.intent.action.VIEW"></action> |
| 29 <category android:name="android.intent.category.DEFAULT"></categ
ory> | 29 <category android:name="android.intent.category.DEFAULT"></categ
ory> |
| 30 <category android:name="android.intent.category.BROWSABLE"></cat
egory> | 30 <category android:name="android.intent.category.BROWSABLE"></cat
egory> |
| 31 <data android:scheme="{{ scope_url_scheme }}" android:host="{{ s
cope_url_host }}" android:pathPrefix="{{ scope_url_path }}"></data> | 31 <data android:scheme="{{ scope_url_scheme }}" android:host="{{ s
cope_url_host }}" android:pathPrefix="{{ scope_url_path }}"></data> |
| 32 </intent-filter> | 32 </intent-filter> |
| 33 </activity> | 33 </activity> |
| 34 <activity android:name="org.chromium.webapk.shell_apk.RecentsPlaceholder
Activity" |
| 35 android:theme="@android:style/Theme.Translucent.NoTitleBar" |
| 36 android:exported="false"> |
| 37 </activity> |
| 34 <activity android:name="org.chromium.webapk.shell_apk.NotificationSettin
gsLauncherActivity"> | 38 <activity android:name="org.chromium.webapk.shell_apk.NotificationSettin
gsLauncherActivity"> |
| 35 <intent-filter> | 39 <intent-filter> |
| 36 <action android:name="android.intent.action.MAIN"/> | 40 <action android:name="android.intent.action.MAIN"/> |
| 37 <category android:name="android.intent.category.NOTIFICATION_PRE
FERENCES"/> | 41 <category android:name="android.intent.category.NOTIFICATION_PRE
FERENCES"/> |
| 38 </intent-filter> | 42 </intent-filter> |
| 39 </activity> | 43 </activity> |
| 40 <meta-data android:name="org.chromium.webapk.shell_apk.shellApkVersion"
android:value="{{ shell_apk_version }}" /> | 44 <meta-data android:name="org.chromium.webapk.shell_apk.shellApkVersion"
android:value="{{ shell_apk_version }}" /> |
| 41 <meta-data android:name="org.chromium.webapk.shell_apk.runtimeHost" andr
oid:value="{{ runtime_host }}" /> | 45 <meta-data android:name="org.chromium.webapk.shell_apk.runtimeHost" andr
oid:value="{{ runtime_host }}" /> |
| 42 <meta-data android:name="org.chromium.webapk.shell_apk.startUrl" android
:value="{{ start_url }}" /> | 46 <meta-data android:name="org.chromium.webapk.shell_apk.startUrl" android
:value="{{ start_url }}" /> |
| 43 <meta-data android:name="org.chromium.webapk.shell_apk.name" android:val
ue="{{ name }}" /> | 47 <meta-data android:name="org.chromium.webapk.shell_apk.name" android:val
ue="{{ name }}" /> |
| (...skipping 29 matching lines...) Expand all Loading... |
| 73 android:process=":webapk_sandboxed_process1" | 77 android:process=":webapk_sandboxed_process1" |
| 74 android:exported="true" | 78 android:exported="true" |
| 75 tools:ignore="ExportedService"/> | 79 tools:ignore="ExportedService"/> |
| 76 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc
essService2" | 80 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc
essService2" |
| 77 android:isolatedProcess="true" | 81 android:isolatedProcess="true" |
| 78 android:process=":webapk_sandboxed_process2" | 82 android:process=":webapk_sandboxed_process2" |
| 79 android:exported="true" | 83 android:exported="true" |
| 80 tools:ignore="ExportedService"/> | 84 tools:ignore="ExportedService"/> |
| 81 </application> | 85 </application> |
| 82 </manifest> | 86 </manifest> |
| OLD | NEW |