OSDN Git Service

Merge change 25645 into eclair
[android-x86/development.git] / apps / launchperf / AndroidManifest.xml
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.launchperf">
18   <application android:label="Launch Performance">
19       <uses-library android:name="android.test.runner" />
20
21     <activity android:name="SimpleActivity" android:label="Simple Activity">
22       <intent-filter>
23         <action android:name="android.intent.action.MAIN" />
24         <category android:name="android.intent.category.DEFAULT" />
25       </intent-filter>
26     </activity>
27
28     <activity android:name="EmptyActivity" android:label="Empty Activity">
29       <intent-filter>
30         <action android:name="android.intent.action.MAIN" />
31         <category android:name="android.intent.category.DEFAULT" />
32       </intent-filter>
33     </activity>
34
35     <activity android:name="ComplexActivity" android:label="Complex Activity">
36       <intent-filter>
37         <action android:name="android.intent.action.MAIN" />
38         <category android:name="android.intent.category.DEFAULT" />
39       </intent-filter>
40     </activity>
41
42   </application>
43
44   <instrumentation android:name="SimpleActivityLaunchPerformance"
45     android:targetPackage="com.android.launchperf"
46     android:label="Simple Activity Launch Performance">
47   </instrumentation>
48
49   <instrumentation android:name="ComplexActivityLaunchPerformance"
50     android:targetPackage="com.android.launchperf"
51     android:label="Complex Activity Launch Performance">
52   </instrumentation>
53
54   <instrumentation android:name="EmptyActivityLaunchPerformance"
55     android:targetPackage="com.android.launchperf"
56     android:label="Empty Activity Launch Performance">
57   </instrumentation>
58
59   <instrumentation android:name="HelloWorldLaunchPerformance"
60     android:targetPackage="com.example.android.apis"
61     android:label="Hello World Launch Performance">
62   </instrumentation>
63
64 </manifest>