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

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

Issue 2779253002: Switch from jinja to mustache templates (Closed)
Patch Set: switch template to no escaping Created 3 years, 8 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 | « no previous file | chrome/android/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 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}}}" >
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="@mipmap/app_icon" 17 android:icon="@mipmap/app_icon"
18 android:label="{{ short_name }}" 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 android:excludeFromRecents="true"> 22 android:excludeFromRecents="true">
23 <intent-filter> 23 <intent-filter>
24 <action android:name="android.intent.action.MAIN" /> 24 <action android:name="android.intent.action.MAIN" />
25 <category android:name="android.intent.category.LAUNCHER" /> 25 <category android:name="android.intent.category.LAUNCHER" />
26 </intent-filter> 26 </intent-filter>
27 <intent-filter> 27 <intent-filter>
28 <action android:name="android.intent.action.VIEW"></action> 28 <action android:name="android.intent.action.VIEW"></action>
29 <category android:name="android.intent.category.DEFAULT"></categ ory> 29 <category android:name="android.intent.category.DEFAULT"></categ ory>
30 <category android:name="android.intent.category.BROWSABLE"></cat egory> 30 <category android:name="android.intent.category.BROWSABLE"></cat egory>
31 <data android:scheme="{{ scope_url_scheme }}" android:host="{{ s cope_url_host }}" android:pathPrefix="{{ scope_url_path }}"></data> 31 <data android:scheme="{{{scope_url_scheme}}}" android:host="{{{s cope_url_host}}}" android:pathPrefix="{{{scope_url_path}}}"></data>
32 </intent-filter> 32 </intent-filter>
33 </activity> 33 </activity>
34 <activity android:name="org.chromium.webapk.shell_apk.NotificationSettin gsLauncherActivity"> 34 <activity android:name="org.chromium.webapk.shell_apk.NotificationSettin gsLauncherActivity">
35 <intent-filter> 35 <intent-filter>
36 <action android:name="android.intent.action.MAIN"/> 36 <action android:name="android.intent.action.MAIN"/>
37 <category android:name="android.intent.category.NOTIFICATION_PRE FERENCES"/> 37 <category android:name="android.intent.category.NOTIFICATION_PRE FERENCES"/>
38 </intent-filter> 38 </intent-filter>
39 </activity> 39 </activity>
40 <meta-data android:name="org.chromium.webapk.shell_apk.shellApkVersion" android:value="{{ shell_apk_version }}" /> 40 <meta-data android:name="org.chromium.webapk.shell_apk.shellApkVersion" android:value="{{{shell_apk_version}}}" />
41 <meta-data android:name="org.chromium.webapk.shell_apk.runtimeHost" andr oid:value="{{ runtime_host }}" /> 41 <meta-data android:name="org.chromium.webapk.shell_apk.runtimeHost" andr oid:value="{{{runtime_host}}}" />
42 <meta-data android:name="org.chromium.webapk.shell_apk.startUrl" android :value="{{ start_url }}" /> 42 <meta-data android:name="org.chromium.webapk.shell_apk.startUrl" android :value="{{{start_url}}}" />
43 <meta-data android:name="org.chromium.webapk.shell_apk.name" android:val ue="{{ name }}" /> 43 <meta-data android:name="org.chromium.webapk.shell_apk.name" android:val ue="{{{name}}}" />
44 <meta-data android:name="org.chromium.webapk.shell_apk.shortName" androi d:value="{{ short_name }}" /> 44 <meta-data android:name="org.chromium.webapk.shell_apk.shortName" androi d:value="{{{short_name}}}" />
45 <meta-data android:name="org.chromium.webapk.shell_apk.scope" android:va lue="{{ scope_url }}" /> 45 <meta-data android:name="org.chromium.webapk.shell_apk.scope" android:va lue="{{{scope_url}}}" />
46 <meta-data android:name="org.chromium.webapk.shell_apk.displayMode" andr oid:value="{{ display_mode }}" /> 46 <meta-data android:name="org.chromium.webapk.shell_apk.displayMode" andr oid:value="{{{display_mode}}}" />
47 <meta-data android:name="org.chromium.webapk.shell_apk.orientation" andr oid:value="{{ orientation }}" /> 47 <meta-data android:name="org.chromium.webapk.shell_apk.orientation" andr oid:value="{{{orientation}}}" />
48 <meta-data android:name="org.chromium.webapk.shell_apk.themeColor" andro id:value="{{ theme_color }}" /> 48 <meta-data android:name="org.chromium.webapk.shell_apk.themeColor" andro id:value="{{{theme_color}}}" />
49 <meta-data android:name="org.chromium.webapk.shell_apk.backgroundColor" android:value="{{ background_color }}" /> 49 <meta-data android:name="org.chromium.webapk.shell_apk.backgroundColor" android:value="{{{background_color}}}" />
50 <meta-data android:name="org.chromium.webapk.shell_apk.iconId" android:r esource="@mipmap/app_icon" /> 50 <meta-data android:name="org.chromium.webapk.shell_apk.iconId" android:r esource="@mipmap/app_icon" />
51 <meta-data android:name="org.chromium.webapk.shell_apk.iconUrlsAndIconMu rmur2Hashes" android:value="{{ icon_urls_and_icon_murmur2_hashes }}" /> 51 <meta-data android:name="org.chromium.webapk.shell_apk.iconUrlsAndIconMu rmur2Hashes" android:value="{{{icon_urls_and_icon_murmur2_hashes}}}" />
52 <meta-data android:name="org.chromium.webapk.shell_apk.webManifestUrl" a ndroid:value="{{ web_manifest_url }}" /> 52 <meta-data android:name="org.chromium.webapk.shell_apk.webManifestUrl" a ndroid:value="{{{web_manifest_url}}}" />
53 <service 53 <service
54 android:name="org.chromium.webapk.shell_apk.WebApkServiceFactory" 54 android:name="org.chromium.webapk.shell_apk.WebApkServiceFactory"
55 android:exported="true" 55 android:exported="true"
56 tools:ignore="ExportedService"> 56 tools:ignore="ExportedService">
57 <intent-filter> 57 <intent-filter>
58 <action android:name="android.intent.action.MAIN" /> 58 <action android:name="android.intent.action.MAIN" />
59 <category android:name="android.intent.category.WEBAPK_API" /> 59 <category android:name="android.intent.category.WEBAPK_API" />
60 </intent-filter> 60 </intent-filter>
61 </service> 61 </service>
62 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES" 62 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES"
(...skipping 10 matching lines...) Expand all
73 android:process=":webapk_sandboxed_process1" 73 android:process=":webapk_sandboxed_process1"
74 android:exported="true" 74 android:exported="true"
75 tools:ignore="ExportedService"/> 75 tools:ignore="ExportedService"/>
76 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc essService2" 76 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc essService2"
77 android:isolatedProcess="true" 77 android:isolatedProcess="true"
78 android:process=":webapk_sandboxed_process2" 78 android:process=":webapk_sandboxed_process2"
79 android:exported="true" 79 android:exported="true"
80 tools:ignore="ExportedService"/> 80 tools:ignore="ExportedService"/>
81 </application> 81 </application>
82 </manifest> 82 </manifest>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/webapk/shell_apk/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698