1<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2        package="com.android.frameworkperf">
3    <uses-permission android:name="android.permission.WAKE_LOCK" />
4    <uses-sdk android:minSdkVersion="5" />
5
6    <application android:hardwareAccelerated="false">
7        <uses-library android:name="android.test.runner" />
8        <activity android:name="FrameworkPerfActivity" android:label="Framework Perf">
9            <intent-filter>
10                <action android:name="android.intent.action.MAIN" />
11                <category android:name="android.intent.category.DEFAULT" />
12                <category android:name="android.intent.category.LAUNCHER" />
13            </intent-filter>
14        </activity>
15        <service android:name="SchedulerService">
16        </service>
17        <service android:name="TestService" android:process=":test">
18        </service>
19        <service android:name="LocalTestService">
20        </service>
21        <receiver android:name="Receiver" android:exported="true">
22        </receiver>
23    </application>
24
25    <instrumentation android:name="android.test.InstrumentationTestRunner"
26        android:targetPackage="com.android.frameworkperf"
27        android:label="Framework Perf Runner"
28    />
29</manifest>
30