The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2008 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.dumprendertree"> |
| 18 | <application android:name="HTMLHostApp"> |
| 19 | <uses-library android:name="android.test.runner" /> |
Guang Zhu | 4ddcede | 2010-01-19 11:51:44 -0800 | [diff] [blame] | 20 | <activity android:name="Menu" android:label="Dump Render Tree" |
Guang Zhu | ddf4f32 | 2010-08-24 12:09:26 -0700 | [diff] [blame] | 21 | android:screenOrientation="portrait" |
| 22 | android:theme="@android:style/Theme.Light"> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | <intent-filter> |
| 24 | <action android:name="android.intent.action.MAIN" /> |
| 25 | <category android:name="android.intent.category.TEST" /> |
| 26 | </intent-filter> |
| 27 | </activity> |
Guang Zhu | c54476b | 2010-12-01 11:16:24 -0800 | [diff] [blame] | 28 | <activity android:name="TestShellActivity" |
| 29 | android:launchMode="singleTop" |
Guang Zhu | e81d1f9 | 2010-12-07 18:00:18 -0800 | [diff] [blame] | 30 | android:hardwareAccelerated="true" |
Guang Zhu | ddf4f32 | 2010-08-24 12:09:26 -0700 | [diff] [blame] | 31 | android:screenOrientation="portrait" |
| 32 | android:theme="@android:style/Theme.Light"/> |
| 33 | <activity android:name="ReliabilityTestActivity" android:screenOrientation="portrait" |
| 34 | android:theme="@android:style/Theme.Light"/> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 35 | </application> |
| 36 | |
| 37 | <instrumentation android:name=".LayoutTestsAutoRunner" |
| 38 | android:targetPackage="com.android.dumprendertree" |
| 39 | android:label="Layout test automation runner" |
| 40 | /> |
Guang Zhu | 73f6076 | 2009-05-21 14:44:58 -0700 | [diff] [blame] | 41 | <uses-permission android:name="android.permission.INTERNET" /> |
Guang Zhu | 65455a1 | 2009-06-01 11:36:03 -0700 | [diff] [blame] | 42 | <uses-permission android:name="android.permission.WRITE_SDCARD" /> |
Guang Zhu | 892771a | 2009-06-01 13:51:21 -0700 | [diff] [blame] | 43 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Guang Zhu | 79d4566 | 2012-09-13 11:17:43 -0700 | [diff] [blame] | 44 | <uses-sdk android:minSdkVersion="5" |
| 45 | android:targetSdkVersion="5" /> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 46 | </manifest> |