1<?xml version="1.0" encoding="utf-8"?>
2
3<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4    package="com.android.tests.memoryusage">
5    <instrumentation android:label="Memory usage instrumentation"
6                     android:name="com.android.tests.memoryusage.MemoryUsageInstrumentation"
7                     android:targetPackage="com.android.tests.memoryusage" />
8
9    <uses-permission android:name="android.permission.REAL_GET_TASKS" />
10
11    <application android:label="Memory Usage Test">
12        <uses-library android:name="android.test.runner" />
13    </application>
14</manifest>
15