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

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

Issue 2762873003: Fix: long-tapping a WebAPK in recents shows Chrome.
Patch Set: Created 3 years, 9 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="{{ 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">
23 <intent-filter> 22 <intent-filter>
24 <action android:name="android.intent.action.MAIN" /> 23 <action android:name="android.intent.action.MAIN" />
25 <category android:name="android.intent.category.LAUNCHER" /> 24 <category android:name="android.intent.category.LAUNCHER" />
26 </intent-filter> 25 </intent-filter>
27 <intent-filter> 26 <intent-filter>
28 <action android:name="android.intent.action.VIEW"></action> 27 <action android:name="android.intent.action.VIEW"></action>
29 <category android:name="android.intent.category.DEFAULT"></categ ory> 28 <category android:name="android.intent.category.DEFAULT"></categ ory>
30 <category android:name="android.intent.category.BROWSABLE"></cat egory> 29 <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> 30 <data android:scheme="{{ scope_url_scheme }}" android:host="{{ s cope_url_host }}" android:pathPrefix="{{ scope_url_path }}"></data>
32 </intent-filter> 31 </intent-filter>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 android:process=":webapk_sandboxed_process1" 72 android:process=":webapk_sandboxed_process1"
74 android:exported="true" 73 android:exported="true"
75 tools:ignore="ExportedService"/> 74 tools:ignore="ExportedService"/>
76 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc essService2" 75 <service android:name="org.chromium.webapk.shell_apk.WebApkSandboxedProc essService2"
77 android:isolatedProcess="true" 76 android:isolatedProcess="true"
78 android:process=":webapk_sandboxed_process2" 77 android:process=":webapk_sandboxed_process2"
79 android:exported="true" 78 android:exported="true"
80 tools:ignore="ExportedService"/> 79 tools:ignore="ExportedService"/>
81 </application> 80 </application>
82 </manifest> 81 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698