OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 <!-- Copyright (c) 2012 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="org.chromium.chrome.testshell"> | 10 package="org.chromium.chrome.testshell"> |
11 | 11 |
12 <permission android:name="org.chromium.chrome.testshell.permission.SANDBOX" | 12 <permission android:name="org.chromium.chrome.testshell.permission.SANDBOX" |
13 android:protectionLevel="signature" /> | 13 android:protectionLevel="signature" /> |
14 | 14 |
15 <application android:name="org.chromium.chrome.testshell.ChromiumTestShellAp
plication" | 15 <application android:name="org.chromium.chrome.testshell.ChromiumTestShellAp
plication" |
16 android:label="ChromiumTestShell"> | 16 android:label="ChromiumTestShell"> |
17 <activity android:name="org.chromium.chrome.testshell.ChromiumTestShellA
ctivity" | 17 <activity android:name="org.chromium.chrome.testshell.ChromiumTestShellA
ctivity" |
18 android:label="ChromiumTestShellActivity" | 18 android:label="ChromiumTestShellActivity" |
| 19 android:launchMode="singleTask" |
19 android:hardwareAccelerated="true"> | 20 android:hardwareAccelerated="true"> |
20 <intent-filter> | 21 <intent-filter> |
21 <action android:name="android.intent.action.MAIN" /> | 22 <action android:name="android.intent.action.MAIN" /> |
22 <category android:name="android.intent.category.LAUNCHER" /> | 23 <category android:name="android.intent.category.LAUNCHER" /> |
23 </intent-filter> | 24 </intent-filter> |
24 </activity> | 25 </activity> |
25 <!-- The following service entries exist in order to allow us to | 26 <!-- The following service entries exist in order to allow us to |
26 start more than one sandboxed process. --> | 27 start more than one sandboxed process. --> |
27 | 28 |
28 <!-- NOTE: If you change the values of "android:process" for any of the
below services, | 29 <!-- NOTE: If you change the values of "android:process" for any of the
below services, |
(...skipping 30 matching lines...) Expand all Loading... |
59 android:exported="false" /> | 60 android:exported="false" /> |
60 </application> | 61 </application> |
61 | 62 |
62 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="16" /> | 63 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="16" /> |
63 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> | 64 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> |
64 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | 65 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
65 <uses-permission android:name="android.permission.INTERNET"/> | 66 <uses-permission android:name="android.permission.INTERNET"/> |
66 <uses-permission android:name="android.permission.VIBRATE"/> | 67 <uses-permission android:name="android.permission.VIBRATE"/> |
67 <uses-permission android:name="android.permission.WAKE_LOCK"/> | 68 <uses-permission android:name="android.permission.WAKE_LOCK"/> |
68 </manifest> | 69 </manifest> |
OLD | NEW |