2016-03-15 17:41:31 +09:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.android.documentsui.appperftests">
|
|
|
|
|
2016-04-04 09:51:06 +09:00
|
|
|
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
|
|
|
|
|
2016-03-15 17:41:31 +09:00
|
|
|
<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="android.test.InstrumentationTestRunner"
|
|
|
|
android:targetPackage="com.android.documentsui.appperftests"
|
|
|
|
android:label="App performance tests for DocumentsUI" />
|
|
|
|
|
|
|
|
</manifest>
|