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 package="{{ manifest_package }}" | 7 package="{{ manifest_package }}" |
8 android:versionCode="1" | 8 android:versionCode="1" |
9 android:versionName="1.0" > | 9 android:versionName="1.0" > |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 <action android:name="android.intent.action.MAIN" /> | 27 <action android:name="android.intent.action.MAIN" /> |
28 <category android:name="android.intent.category.LAUNCHER" /> | 28 <category android:name="android.intent.category.LAUNCHER" /> |
29 </intent-filter> | 29 </intent-filter> |
30 <intent-filter> | 30 <intent-filter> |
31 <action android:name="android.intent.action.VIEW"></action> | 31 <action android:name="android.intent.action.VIEW"></action> |
32 <category android:name="android.intent.category.DEFAULT"></categ
ory> | 32 <category android:name="android.intent.category.DEFAULT"></categ
ory> |
33 <category android:name="android.intent.category.BROWSABLE"></cat
egory> | 33 <category android:name="android.intent.category.BROWSABLE"></cat
egory> |
34 <data android:scheme="https" android:host="{{ scope_url_host }}"
android:pathPrefix=""></data> | 34 <data android:scheme="https" android:host="{{ scope_url_host }}"
android:pathPrefix=""></data> |
35 </intent-filter> | 35 </intent-filter> |
36 </activity> | 36 </activity> |
| 37 <meta-data android:name="runtimeHost" android:value="{{ runtime_host }}"
/> |
37 <meta-data android:name="hostUrl" android:value="{{ host_url }}" /> | 38 <meta-data android:name="hostUrl" android:value="{{ host_url }}" /> |
38 <meta-data android:name="mac" android:value="{{ mac }}" /> | 39 <meta-data android:name="mac" android:value="{{ mac }}" /> |
39 <meta-data android:name="scope" android:value="{{ scope }}" /> | 40 <meta-data android:name="scope" android:value="{{ scope }}" /> |
40 <service | 41 <service |
41 android:name="org.chromium.minting.MintingServiceFactory" | 42 android:name="org.chromium.minting.MintingServiceFactory" |
42 android:exported="true"> | 43 android:exported="true"> |
43 <intent-filter> | 44 <intent-filter> |
44 <action android:name="android.intent.action.MAIN" /> | 45 <action android:name="android.intent.action.MAIN" /> |
45 <category android:name="android.intent.category.MINTED_API" /> | 46 <category android:name="android.intent.category.MINTED_API" /> |
46 </intent-filter> | 47 </intent-filter> |
(...skipping 20 matching lines...) Expand all Loading... |
67 android:exported="true"/> | 68 android:exported="true"/> |
68 <service android:name="org.chromium.content.app.PrivilegedProcessService
1" | 69 <service android:name="org.chromium.content.app.PrivilegedProcessService
1" |
69 android:process=":privileged_process1" | 70 android:process=":privileged_process1" |
70 android:exported="true"/> | 71 android:exported="true"/> |
71 <service android:name="org.chromium.content.app.PrivilegedProcessService
2" | 72 <service android:name="org.chromium.content.app.PrivilegedProcessService
2" |
72 android:process=":privileged_process2" | 73 android:process=":privileged_process2" |
73 android:exported="true"/> | 74 android:exported="true"/> |
74 </application> | 75 </application> |
75 | 76 |
76 </manifest> | 77 </manifest> |
OLD | NEW |