blob: 1cb8c37a85d6eeabcd8b5d8fb689b0ce965173a9 [file] [log] [blame]
Chris Craikc3683b52012-10-01 18:22:38 -07001<!-- Copyright (C) 2012 The Android Open Source Project
2
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14-->
15<manifest xmlns:android="http://schemas.android.com/apk/res/android"
16 package="com.android.test.hwuicompare" >
17
18 <!-- for perfhud -->
19 <uses-permission android:name="android.permission.INTERNET" />
20
21 <application
22 android:label="@string/app_name"
23 android:theme="@android:style/Theme.Holo.Light.NoActionBar">
24 <activity
25 android:name="AutomaticActivity"
26 android:label="CanvasAutoCompare" >
27 <intent-filter>
28 <action android:name="android.intent.action.MAIN" />
29 <category android:name="android.intent.category.LAUNCHER" />
30 </intent-filter>
31 </activity>
32 <activity
33 android:name="ManualActivity"
34 android:label="CanvasManualCompare" >
35 <intent-filter>
36 <action android:name="android.intent.action.MAIN" />
37 <category android:name="android.intent.category.LAUNCHER" />
38 </intent-filter>
39 </activity>
40 <uses-library android:name="android.test.runner" />
41 </application>
42 <instrumentation
43 android:name="android.test.InstrumentationTestRunner"
44 android:targetPackage="com.android.test.hwuicompare"
45 android:label="HW/SW Canvas comparison tool."/>
46
47</manifest>