OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
3 <!-- Copyright 2013 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2013 The Chromium Authors. All rights reserved. |
4 | 4 |
5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
6 found in the LICENSE file. | 6 found in the LICENSE file. |
7 --> | 7 --> |
8 | 8 |
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
10 package="{{ manifest_package }}" | 10 package="{{ manifest_package }}" |
(...skipping 12 matching lines...) Expand all Loading... |
23 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | 23 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
24 | 24 |
25 <application android:icon="@mipmap/ic_launcher" | 25 <application android:icon="@mipmap/ic_launcher" |
26 android:name="org.chromium.mojo.shell.MojoShellApplication" | 26 android:name="org.chromium.mojo.shell.MojoShellApplication" |
27 android:label="{{ apk_name }}"> | 27 android:label="{{ apk_name }}"> |
28 <meta-data android:name="com.google.android.gms.version" | 28 <meta-data android:name="com.google.android.gms.version" |
29 android:value="@integer/google_play_services_version" /> | 29 android:value="@integer/google_play_services_version" /> |
30 <activity android:name="org.chromium.mojo.shell.MojoShellActivity" | 30 <activity android:name="org.chromium.mojo.shell.MojoShellActivity" |
31 android:launchMode="standard" | 31 android:launchMode="standard" |
32 android:documentLaunchMode="none" | 32 android:documentLaunchMode="none" |
33 android:theme="@android:style/Theme.NoDisplay"> | 33 android:theme="@style/Theme.Transparent"> |
34 <intent-filter> | 34 <intent-filter> |
35 <!-- A mojo://host/path url will load the app at the | 35 <!-- A mojo://host/path url will load the app at the |
36 https://host/path URL. | 36 https://host/path URL. |
37 --> | 37 --> |
38 <data android:scheme="mojo"/> | 38 <data android:scheme="mojo"/> |
39 <action android:name="android.intent.action.VIEW"/> | 39 <action android:name="android.intent.action.VIEW"/> |
40 <category android:name="android.intent.category.DEFAULT"/> | 40 <category android:name="android.intent.category.DEFAULT"/> |
41 <category android:name="android.intent.category.BROWSABLE"/> | 41 <category android:name="android.intent.category.BROWSABLE"/> |
42 </intent-filter> | 42 </intent-filter> |
43 </activity> | 43 </activity> |
(...skipping 20 matching lines...) Expand all Loading... |
64 <data android:mimeType="text/plain"/> | 64 <data android:mimeType="text/plain"/> |
65 </intent-filter> | 65 </intent-filter> |
66 </activity> | 66 </activity> |
67 <activity android:name="org.chromium.mojo.shell.IntentReceiverActivity" | 67 <activity android:name="org.chromium.mojo.shell.IntentReceiverActivity" |
68 android:theme="@style/Theme.Transparent"> | 68 android:theme="@style/Theme.Transparent"> |
69 </activity> | 69 </activity> |
70 <service android:name="org.chromium.mojo.shell.ShellService" /> | 70 <service android:name="org.chromium.mojo.shell.ShellService" /> |
71 </application> | 71 </application> |
72 | 72 |
73 </manifest> | 73 </manifest> |
OLD | NEW |