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

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

Issue 2094903003: Pass all intent extras needed to render splash screen when launching WebAPK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into webapk_more_meta Created 4 years, 5 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
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 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="1" 9 android:versionCode="1"
10 android:versionName="1.0" > 10 android:versionName="1.0" >
11 11
12 <uses-sdk 12 <uses-sdk
13 android:minSdkVersion="16" 13 android:minSdkVersion="16"
14 android:targetSdkVersion="23" /> 14 android:targetSdkVersion="23" />
15 15
16 <application 16 <application
17 android:icon="@drawable/app_icon" 17 android:icon="@drawable/app_icon"
18 android:label="WebAPK Sample App" 18 android:label="{{ short_name }}"
19 android:allowBackup="false"> 19 android:allowBackup="false">
20 <activity android:name="org.chromium.webapk.shell_apk.MainActivity" 20 <activity android:name="org.chromium.webapk.shell_apk.MainActivity"
21 android:theme="@android:style/Theme.Translucent.NoTitleBar"> 21 android:theme="@android:style/Theme.Translucent.NoTitleBar">
22 <intent-filter> 22 <intent-filter>
23 <action android:name="android.intent.action.MAIN" /> 23 <action android:name="android.intent.action.MAIN" />
24 <category android:name="android.intent.category.LAUNCHER" /> 24 <category android:name="android.intent.category.LAUNCHER" />
25 </intent-filter> 25 </intent-filter>
26 <intent-filter> 26 <intent-filter>
27 <action android:name="android.intent.action.VIEW"></action> 27 <action android:name="android.intent.action.VIEW"></action>
28 <category android:name="android.intent.category.DEFAULT"></categ ory> 28 <category android:name="android.intent.category.DEFAULT"></categ ory>
29 <category android:name="android.intent.category.BROWSABLE"></cat egory> 29 <category android:name="android.intent.category.BROWSABLE"></cat egory>
30 <data android:scheme="https" android:host="{{ scope_url_host }}" android:pathPrefix="/"></data> 30 <data android:scheme="https" android:host="{{ scope_url_host }}" android:pathPrefix="/"></data>
31 </intent-filter> 31 </intent-filter>
32 </activity> 32 </activity>
33 <meta-data android:name="runtimeHost" android:value="{{ runtime_host }}" /> 33 <meta-data android:name="runtimeHost" android:value="{{ runtime_host }}" />
34 <meta-data android:name="hostUrl" android:value="{{ host_url }}" /> 34 <meta-data android:name="startUrl" android:value="{{ start_url }}" />
35 <meta-data android:name="name" android:value="{{ name }}" />
35 <meta-data android:name="scope" android:value="{{ scope_url }}" /> 36 <meta-data android:name="scope" android:value="{{ scope_url }}" />
37 <meta-data android:name="displayMode" android:value="{{ display_mode }}" />
38 <meta-data android:name="orientation" android:value="{{ orientation }}" />
39 <meta-data android:name="themeColor" android:value="{{ theme_color }}" / >
40 <meta-data android:name="backgroundColor" android:value="{{ background_c olor }}" />
41 <meta-data android:name="iconUrl" android:value="{{ icon_url }}" />
36 <service 42 <service
37 android:name="org.chromium.webapk.shell_apk.WebApkServiceFactory" 43 android:name="org.chromium.webapk.shell_apk.WebApkServiceFactory"
38 android:exported="true" 44 android:exported="true"
39 tools:ignore="ExportedService"> 45 tools:ignore="ExportedService">
40 <intent-filter> 46 <intent-filter>
41 <action android:name="android.intent.action.MAIN" /> 47 <action android:name="android.intent.action.MAIN" />
42 <category android:name="android.intent.category.WEBAPK_API" /> 48 <category android:name="android.intent.category.WEBAPK_API" />
43 </intent-filter> 49 </intent-filter>
44 </service> 50 </service>
45 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES" 51 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES"
(...skipping 10 matching lines...) Expand all
56 android:process=":webapk_sandboxed_process1" 62 android:process=":webapk_sandboxed_process1"
57 android:exported="true" 63 android:exported="true"
58 tools:ignore="ExportedService"/> 64 tools:ignore="ExportedService"/>
59 <service android:name="org.chromium.webapk.lib.common.WebApkSandboxedPro cessService2" 65 <service android:name="org.chromium.webapk.lib.common.WebApkSandboxedPro cessService2"
60 android:isolatedProcess="true" 66 android:isolatedProcess="true"
61 android:process=":webapk_sandboxed_process2" 67 android:process=":webapk_sandboxed_process2"
62 android:exported="true" 68 android:exported="true"
63 tools:ignore="ExportedService"/> 69 tools:ignore="ExportedService"/>
64 </application> 70 </application>
65 </manifest> 71 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698