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

Side by Side Diff: shell/android/apk/AndroidManifest.xml.jinja2

Issue 1431663002: Update android SDK to API version 23. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Folloe review Created 5 years, 1 month 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 | « shell/BUILD.gn ('k') | shell/android/apk/src/org/chromium/mojo/shell/BaseActivity.java » ('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 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
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
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>
OLDNEW
« no previous file with comments | « shell/BUILD.gn ('k') | shell/android/apk/src/org/chromium/mojo/shell/BaseActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698