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

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

Issue 1414633004: Use file to pass arguments to the shell. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Follow 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
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.INTERNET"/>
16 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> 15 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
17 <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" />
18 <uses-permission android:name="android.permission.INTERNET"/>
19 <uses-permission android:name="android.permission.NFC"/>
18 <uses-permission android:name="android.permission.READ_CONTACTS" /> 20 <uses-permission android:name="android.permission.READ_CONTACTS" />
19 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 21 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
20 <uses-permission android:name="android.permission.NFC"/>
21 <uses-permission android:name="android.permission.RECORD_AUDIO"/> 22 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
22 <uses-permission android:name="android.permission.CAMERA" /> 23 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
23 24
24 <application android:icon="@mipmap/ic_launcher" 25 <application android:icon="@mipmap/ic_launcher"
25 android:name="org.chromium.mojo.shell.MojoShellApplication" 26 android:name="org.chromium.mojo.shell.MojoShellApplication"
26 android:label="{{ apk_name }}"> 27 android:label="{{ apk_name }}">
27 <meta-data android:name="com.google.android.gms.version" 28 <meta-data android:name="com.google.android.gms.version"
28 android:value="@integer/google_play_services_version" /> 29 android:value="@integer/google_play_services_version" />
29 <activity android:name="org.chromium.mojo.shell.MojoShellActivity" 30 <activity android:name="org.chromium.mojo.shell.MojoShellActivity"
30 android:launchMode="standard" 31 android:launchMode="standard"
31 android:documentLaunchMode="none" 32 android:documentLaunchMode="none"
32 android:theme="@android:style/Theme.NoDisplay"> 33 android:theme="@android:style/Theme.NoDisplay">
(...skipping 30 matching lines...) Expand all
63 <data android:mimeType="text/plain"/> 64 <data android:mimeType="text/plain"/>
64 </intent-filter> 65 </intent-filter>
65 </activity> 66 </activity>
66 <activity android:name="org.chromium.mojo.shell.IntentReceiverActivity" 67 <activity android:name="org.chromium.mojo.shell.IntentReceiverActivity"
67 android:theme="@style/Theme.Transparent"> 68 android:theme="@style/Theme.Transparent">
68 </activity> 69 </activity>
69 <service android:name="org.chromium.mojo.shell.ShellService" /> 70 <service android:name="org.chromium.mojo.shell.ShellService" />
70 </application> 71 </application>
71 72
72 </manifest> 73 </manifest>
OLDNEW
« no previous file with comments | « mojo/devtools/common/devtoolslib/android_shell.py ('k') | shell/android/apk/src/org/chromium/mojo/shell/ShellService.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698