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