summaryrefslogtreecommitdiffstats
path: root/tests/MemoryUsage/AndroidManifest.xml
blob: cd559c547dd0777cc4d4a7bf7edff198686772cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.tests.memoryusage">
    <instrumentation android:label="Memory usage instrumentation"
                     android:name="com.android.tests.memoryusage.MemoryUsageInstrumentation"
                     android:targetPackage="com.android.tests.memoryusage" />

    <uses-permission android:name="android.permission.REAL_GET_TASKS" />

    <application android:label="Memory Usage Test">
        <uses-library android:name="android.test.runner" />
    </application>
</manifest>