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

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

Issue 1439953002: Use debug apks for dev builds. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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') | no next file » | 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 }}"
11 android:versionCode="{{ version_code }}" 11 android:versionCode="{{ version_code }}"
12 android:versionName="{{ version_name }}"> 12 android:versionName="{{ version_name }}">
13 13
14 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23" /> 14 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23" />
15 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> 15 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
16 <uses-permission android:name="android.permission.ACCESS_NETWORK_CONDITIONS" /> 16 <uses-permission android:name="android.permission.ACCESS_NETWORK_CONDITIONS" />
17 <uses-permission android:name="android.permission.CAMERA" /> 17 <uses-permission android:name="android.permission.CAMERA" />
18 <uses-permission android:name="android.permission.INTERNET"/> 18 <uses-permission android:name="android.permission.INTERNET"/>
19 <uses-permission android:name="android.permission.NFC"/> 19 <uses-permission android:name="android.permission.NFC"/>
20 <uses-permission android:name="android.permission.READ_CONTACTS" /> 20 <uses-permission android:name="android.permission.READ_CONTACTS" />
21 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 21 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
22 <uses-permission android:name="android.permission.RECORD_AUDIO"/> 22 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
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 android:debuggable="{{ debuggable }}">
28 <meta-data android:name="com.google.android.gms.version" 29 <meta-data android:name="com.google.android.gms.version"
29 android:value="@integer/google_play_services_version" /> 30 android:value="@integer/google_play_services_version" />
30 <activity android:name="org.chromium.mojo.shell.MojoShellActivity" 31 <activity android:name="org.chromium.mojo.shell.MojoShellActivity"
31 android:launchMode="standard" 32 android:launchMode="standard"
32 android:documentLaunchMode="none" 33 android:documentLaunchMode="none"
33 android:theme="@style/Theme.Transparent"> 34 android:theme="@style/Theme.Transparent">
34 <intent-filter> 35 <intent-filter>
35 <!-- A mojo://host/path url will load the app at the 36 <!-- A mojo://host/path url will load the app at the
36 https://host/path URL. 37 https://host/path URL.
37 --> 38 -->
(...skipping 26 matching lines...) Expand all
64 <data android:mimeType="text/plain"/> 65 <data android:mimeType="text/plain"/>
65 </intent-filter> 66 </intent-filter>
66 </activity> 67 </activity>
67 <activity android:name="org.chromium.mojo.shell.IntentReceiverActivity" 68 <activity android:name="org.chromium.mojo.shell.IntentReceiverActivity"
68 android:theme="@style/Theme.Transparent"> 69 android:theme="@style/Theme.Transparent">
69 </activity> 70 </activity>
70 <service android:name="org.chromium.mojo.shell.ShellService" /> 71 <service android:name="org.chromium.mojo.shell.ShellService" />
71 </application> 72 </application>
72 73
73 </manifest> 74 </manifest>
OLDNEW
« no previous file with comments | « shell/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698