1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.android.documentsui.appperftests">
4
5    <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
6    <uses-permission android:name="android.permission.FORCE_STOP_PACKAGES" />
7    <uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
8
9    <application>
10        <uses-library android:name="android.test.runner" />
11
12        <activity
13            android:name="com.android.documentsui.LauncherActivity" />
14    </application>
15
16    <!-- This package instrumentates itself, so the DocumentsUI process can be killed without
17         killing the testing package. -->
18    <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
19        android:targetPackage="com.android.documentsui.appperftests"
20        android:label="App performance tests for DocumentsUI" />
21
22</manifest>
23