blob: bcb821b44faaa1d73f51635d9305960c8b128c52 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001<?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 Zhu4ddcede2010-01-19 11:51:44 -080020 <activity android:name="Menu" android:label="Dump Render Tree"
Guang Zhuddf4f322010-08-24 12:09:26 -070021 android:screenOrientation="portrait"
22 android:theme="@android:style/Theme.Light">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023 <intent-filter>
24 <action android:name="android.intent.action.MAIN" />
25 <category android:name="android.intent.category.TEST" />
26 </intent-filter>
27 </activity>
Guang Zhuc54476b2010-12-01 11:16:24 -080028 <activity android:name="TestShellActivity"
29 android:launchMode="singleTop"
Guang Zhue81d1f92010-12-07 18:00:18 -080030 android:hardwareAccelerated="true"
Guang Zhuddf4f322010-08-24 12:09:26 -070031 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 Project9066cfe2009-03-03 19:31:44 -080035 </application>
36
37 <instrumentation android:name=".LayoutTestsAutoRunner"
38 android:targetPackage="com.android.dumprendertree"
39 android:label="Layout test automation runner"
40 />
Guang Zhu73f60762009-05-21 14:44:58 -070041 <uses-permission android:name="android.permission.INTERNET" />
Guang Zhu65455a12009-06-01 11:36:03 -070042 <uses-permission android:name="android.permission.WRITE_SDCARD" />
Guang Zhu892771a2009-06-01 13:51:21 -070043 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Guang Zhu79d45662012-09-13 11:17:43 -070044 <uses-sdk android:minSdkVersion="5"
45 android:targetSdkVersion="5" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046</manifest>