| OLD | NEW |
| (Empty) |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 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 | |
| 4 found in the LICENSE file. | |
| 5 --> | |
| 6 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| 7 package="{{ manifest_package }}" | |
| 8 android:versionCode="1" | |
| 9 android:versionName="1.0" > | |
| 10 | |
| 11 <uses-sdk | |
| 12 android:minSdkVersion="16" | |
| 13 android:targetSdkVersion="23" /> | |
| 14 | |
| 15 <uses-permission-sdk-23 android:name="android.permission.ACCESS_FINE_LOCATIO
N"/> | |
| 16 <uses-permission-sdk-23 android:name="android.permission.CAMERA"/> | |
| 17 <uses-permission-sdk-23 android:name="android.permission.RECORD_AUDIO"/> | |
| 18 | |
| 19 <application | |
| 20 android:name="org.chromium.minting.WebApkApplication" | |
| 21 android:icon="@drawable/app_icon" | |
| 22 android:label="mintingapp" | |
| 23 android:allowBackup="false" > | |
| 24 <activity android:name="org.chromium.minting.MainActivity" | |
| 25 android:theme="@android:style/Theme.Translucent.NoTitleBar"> | |
| 26 <intent-filter> | |
| 27 <action android:name="android.intent.action.MAIN" /> | |
| 28 <category android:name="android.intent.category.LAUNCHER" /> | |
| 29 </intent-filter> | |
| 30 <intent-filter> | |
| 31 <action android:name="android.intent.action.VIEW"></action> | |
| 32 <category android:name="android.intent.category.DEFAULT"></categ
ory> | |
| 33 <category android:name="android.intent.category.BROWSABLE"></cat
egory> | |
| 34 <data android:scheme="https" android:host="{{ scope_url_host }}"
android:pathPrefix=""></data> | |
| 35 </intent-filter> | |
| 36 </activity> | |
| 37 <meta-data android:name="runtimeHost" android:value="{{ runtime_host }}"
/> | |
| 38 <meta-data android:name="hostUrl" android:value="{{ host_url }}" /> | |
| 39 <meta-data android:name="mac" android:value="{{ mac }}" /> | |
| 40 <meta-data android:name="scope" android:value="{{ scope }}" /> | |
| 41 <service | |
| 42 android:name="org.chromium.minting.WebApkServiceFactory" | |
| 43 android:exported="true"> | |
| 44 <intent-filter> | |
| 45 <action android:name="android.intent.action.MAIN" /> | |
| 46 <category android:name="android.intent.category.MINTED_API" /> | |
| 47 </intent-filter> | |
| 48 </service> | |
| 49 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" | |
| 50 android:value="3"/> | |
| 51 <service android:name="org.chromium.content.app.SandboxedProcessService0
" | |
| 52 android:isolatedProcess="true" | |
| 53 android:process=":sandboxed_process0" | |
| 54 android:exported="true"/> | |
| 55 <service android:name="org.chromium.content.app.SandboxedProcessService1
" | |
| 56 android:isolatedProcess="true" | |
| 57 android:process=":sandboxed_process1" | |
| 58 android:exported="true"/> | |
| 59 <service android:name="org.chromium.content.app.SandboxedProcessService2
" | |
| 60 android:isolatedProcess="true" | |
| 61 android:process=":sandboxed_process2" | |
| 62 android:exported="true"/> | |
| 63 | |
| 64 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" | |
| 65 android:value="3"/> | |
| 66 <service android:name="org.chromium.content.app.PrivilegedProcessService
0" | |
| 67 android:process=":privileged_process0" | |
| 68 android:exported="true"/> | |
| 69 <service android:name="org.chromium.content.app.PrivilegedProcessService
1" | |
| 70 android:process=":privileged_process1" | |
| 71 android:exported="true"/> | |
| 72 <service android:name="org.chromium.content.app.PrivilegedProcessService
2" | |
| 73 android:process=":privileged_process2" | |
| 74 android:exported="true"/> | |
| 75 </application> | |
| 76 | |
| 77 </manifest> | |
| OLD | NEW |