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

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

Issue 1280613003: Allow native_viewport to create new native windows on demand on Android. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 4 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 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"/> 15 <uses-permission android:name="android.permission.INTERNET"/>
16 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> 16 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
17 <uses-permission android:name="android.permission.ACCESS_NETWORK_CONDITIONS" /> 17 <uses-permission android:name="android.permission.ACCESS_NETWORK_CONDITIONS" />
18 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 18 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
19 <uses-permission android:name="android.permission.NFC"/> 19 <uses-permission android:name="android.permission.NFC"/>
20 <uses-permission android:name="android.permission.RECORD_AUDIO"/> 20 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
21 21
22 <application android:icon="@mipmap/ic_launcher" 22 <application android:icon="@mipmap/ic_launcher"
23 android:name="org.chromium.mojo.shell.MojoShellApplication" 23 android:name="org.chromium.mojo.shell.MojoShellApplication"
24 android:label="{{ apk_name }}"> 24 android:label="{{ apk_name }}">
25 <meta-data android:name="com.google.android.gms.version" 25 <meta-data android:name="com.google.android.gms.version"
26 android:value="@integer/google_play_services_version" /> 26 android:value="@integer/google_play_services_version" />
27 <activity android:name="org.chromium.mojo.shell.MojoShellActivity" 27 <activity android:name="org.chromium.mojo.shell.MojoShellActivity"
28 android:launchMode="standard" 28 android:launchMode="standard"
29 android:documentLaunchMode="none" 29 android:documentLaunchMode="none"
30 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 30 android:theme="@android:style/Theme.NoDisplay">
31 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
32 android:windowSoftInputMode="adjustPan"
33 android:hardwareAccelerated="true">
34 <intent-filter> 31 <intent-filter>
35 <!-- A mojo://host/path url will load the app at the 32 <!-- A mojo://host/path url will load the app at the
36 https://host/path URL. 33 https://host/path URL.
37 --> 34 -->
38 <data android:scheme="mojo"/> 35 <data android:scheme="mojo"/>
39 <action android:name="android.intent.action.VIEW"/> 36 <action android:name="android.intent.action.VIEW"/>
40 <category android:name="android.intent.category.DEFAULT"/> 37 <category android:name="android.intent.category.DEFAULT"/>
41 <category android:name="android.intent.category.BROWSABLE"/> 38 <category android:name="android.intent.category.BROWSABLE"/>
42 </intent-filter> 39 </intent-filter>
43 </activity> 40 </activity>
41 <activity android:name="org.chromium.mojo.shell.ViewportActivity"
42 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
43 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
44 android:windowSoftInputMode="adjustPan"
45 android:hardwareAccelerated="true">
46 </activity>
44 <activity android:name="org.chromium.mojo.shell.NfcReceiverActivity" 47 <activity android:name="org.chromium.mojo.shell.NfcReceiverActivity"
45 android:theme="@android:style/Theme.NoDisplay" > 48 android:theme="@android:style/Theme.NoDisplay" >
46 <intent-filter> 49 <intent-filter>
47 <action android:name="android.nfc.action.NDEF_DISCOVERED"/> 50 <action android:name="android.nfc.action.NDEF_DISCOVERED"/>
48 <category android:name="android.intent.category.DEFAULT"/> 51 <category android:name="android.intent.category.DEFAULT"/>
49 <data android:mimeType="mojo/data"/> 52 <data android:mimeType="mojo/data"/>
50 </intent-filter> 53 </intent-filter>
51 </activity> 54 </activity>
52 <activity android:name="org.chromium.mojo.shell.SharingActivity" 55 <activity android:name="org.chromium.mojo.shell.SharingActivity"
53 android:theme="@android:style/Theme.NoDisplay" 56 android:theme="@android:style/Theme.NoDisplay"
54 android:enabled="false"> 57 android:enabled="false">
55 <intent-filter> 58 <intent-filter>
56 <action android:name="android.intent.action.SEND"/> 59 <action android:name="android.intent.action.SEND"/>
57 <category android:name="android.intent.category.DEFAULT"/> 60 <category android:name="android.intent.category.DEFAULT"/>
58 <data android:mimeType="text/plain"/> 61 <data android:mimeType="text/plain"/>
59 </intent-filter> 62 </intent-filter>
60 </activity> 63 </activity>
61 <service android:name="org.chromium.mojo.shell.IntentReceiverService"/> 64 <service android:name="org.chromium.mojo.shell.IntentReceiverService"/>
62 <service android:name="org.chromium.mojo.shell.ShellService" /> 65 <service android:name="org.chromium.mojo.shell.ShellService" />
63 </application> 66 </application>
64 67
65 </manifest> 68 </manifest>
OLDNEW
« no previous file with comments | « shell/BUILD.gn ('k') | shell/android/apk/src/org/chromium/mojo/shell/JavaApplicationRegistry.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698