You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
793 B
21 lines
793 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.documentsui.appperftests">
|
|
|
|
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
|
|
|
|
<application>
|
|
<uses-library android:name="android.test.runner" />
|
|
|
|
<activity
|
|
android:name="com.android.documentsui.LauncherActivity" />
|
|
</application>
|
|
|
|
<!-- This package instrumentates itself, so the DocumentsUI process can be killed without
|
|
killing the testing package. -->
|
|
<instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
|
|
android:targetPackage="com.android.documentsui.appperftests"
|
|
android:label="App performance tests for DocumentsUI" />
|
|
|
|
</manifest>
|