Home | History | Annotate | Download | only in app-perf-tests
      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.KILL_BACKGROUND_PROCESSES" />
      6 
      7     <application>
      8         <uses-library android:name="android.test.runner" />
      9 
     10         <activity
     11             android:name="com.android.documentsui.LauncherActivity" />
     12     </application>
     13 
     14     <!-- This package instrumentates itself, so the DocumentsUI process can be killed without
     15          killing the testing package. -->
     16     <instrumentation android:name="android.test.InstrumentationTestRunner"
     17         android:targetPackage="com.android.documentsui.appperftests"
     18         android:label="App performance tests for DocumentsUI" />
     19 
     20 </manifest>
     21