Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(223)

Side by Side Diff: webapk/shell_apk/AndroidManifest.xml

Issue 1945303005: Change webapk packages and directory structure (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webapk/libs/runtime_library_version.gni ('k') | webapk/shell_apk/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 <uses-sdk 11 <uses-sdk
12 android:minSdkVersion="16" 12 android:minSdkVersion="16"
13 android:targetSdkVersion="23" /> 13 android:targetSdkVersion="23" />
14 14
15 <uses-permission-sdk-23 android:name="android.permission.ACCESS_FINE_LOCATIO N"/> 15 <uses-permission-sdk-23 android:name="android.permission.ACCESS_FINE_LOCATIO N"/>
16 <uses-permission-sdk-23 android:name="android.permission.CAMERA"/> 16 <uses-permission-sdk-23 android:name="android.permission.CAMERA"/>
17 <uses-permission-sdk-23 android:name="android.permission.RECORD_AUDIO"/> 17 <uses-permission-sdk-23 android:name="android.permission.RECORD_AUDIO"/>
18 18
19 <application 19 <application
20 android:name="org.chromium.minting.WebApkApplication" 20 android:name="org.chromium.webapk.shell_apk.WebApkApplication"
21 android:icon="@drawable/app_icon" 21 android:icon="@drawable/app_icon"
22 android:label="mintingapp" 22 android:label="mintingapp"
23 android:allowBackup="false" > 23 android:allowBackup="false" >
24 <activity android:name="org.chromium.minting.MainActivity" 24 <activity android:name="org.chromium.webapk.shell_apk.MainActivity"
25 android:theme="@android:style/Theme.Translucent.NoTitleBar"> 25 android:theme="@android:style/Theme.Translucent.NoTitleBar">
26 <intent-filter> 26 <intent-filter>
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="runtimeHost" android:value="{{ runtime_host }}" />
38 <meta-data android:name="hostUrl" android:value="{{ host_url }}" /> 38 <meta-data android:name="hostUrl" android:value="{{ host_url }}" />
39 <meta-data android:name="mac" android:value="{{ mac }}" /> 39 <meta-data android:name="mac" android:value="{{ mac }}" />
40 <meta-data android:name="scope" android:value="{{ scope }}" /> 40 <meta-data android:name="scope" android:value="{{ scope }}" />
41 <service 41 <service
42 android:name="org.chromium.minting.WebApkServiceFactory" 42 android:name="org.chromium.webapk.shell_apk.WebApkServiceFactory"
43 android:exported="true"> 43 android:exported="true">
44 <intent-filter> 44 <intent-filter>
45 <action android:name="android.intent.action.MAIN" /> 45 <action android:name="android.intent.action.MAIN" />
46 <category android:name="android.intent.category.MINTED_API" /> 46 <category android:name="android.intent.category.MINTED_API" />
47 </intent-filter> 47 </intent-filter>
48 </service> 48 </service>
49 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES" 49 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES"
50 android:value="3"/> 50 android:value="3"/>
51 <service android:name="org.chromium.content.app.SandboxedProcessService0 " 51 <service android:name="org.chromium.content.app.SandboxedProcessService0 "
52 android:isolatedProcess="true" 52 android:isolatedProcess="true"
(...skipping 15 matching lines...) Expand all
68 android:exported="true"/> 68 android:exported="true"/>
69 <service android:name="org.chromium.content.app.PrivilegedProcessService 1" 69 <service android:name="org.chromium.content.app.PrivilegedProcessService 1"
70 android:process=":privileged_process1" 70 android:process=":privileged_process1"
71 android:exported="true"/> 71 android:exported="true"/>
72 <service android:name="org.chromium.content.app.PrivilegedProcessService 2" 72 <service android:name="org.chromium.content.app.PrivilegedProcessService 2"
73 android:process=":privileged_process2" 73 android:process=":privileged_process2"
74 android:exported="true"/> 74 android:exported="true"/>
75 </application> 75 </application>
76 76
77 </manifest> 77 </manifest>
OLDNEW
« no previous file with comments | « webapk/libs/runtime_library_version.gni ('k') | webapk/shell_apk/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698