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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
64 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc essService1" | 64 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc essService1" |
65 android:isolatedProcess="true" | 65 android:isolatedProcess="true" |
66 android:process=":webapk_sandboxed_process1" | 66 android:process=":webapk_sandboxed_process1" |
67 android:exported="true" | 67 android:exported="true" |
68 tools:ignore="ExportedService"/> | 68 tools:ignore="ExportedService"/> |
69 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc essService2" | 69 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc essService2" |
70 android:isolatedProcess="true" | 70 android:isolatedProcess="true" |
71 android:process=":webapk_sandboxed_process2" | 71 android:process=":webapk_sandboxed_process2" |
72 android:exported="true" | 72 android:exported="true" |
73 tools:ignore="ExportedService"/> | 73 tools:ignore="ExportedService"/> |
74 <service | |
75 android:name="org.chromium.webapk.shell_apk.IdentityService" | |
76 android:exported="true" | |
77 tools:ignore="ExportedService"> | |
78 <intent-filter> | |
79 <action android:name="android.intent.action.MAIN" /> | |
80 <category android:name="android.intent.category.WEBAPK_IDENTITY_SE RVICE_API" /> | |
Yaron
2017/07/10 18:09:07
org.chromium.WEBAPK_IDENTITY_SERVICE_API?
Xi Han
2017/07/12 13:49:14
org.webapk.IDENTITY_SERVICE_API?
| |
81 </intent-filter> | |
82 </service> | |
74 </application> | 83 </application> |
75 </manifest> | 84 </manifest> |
OLD | NEW |