2012-08-17 14:17:06 -07:00
|
|
|
<?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" />
|
|
|
|
|
2015-05-05 12:00:24 -07:00
|
|
|
<uses-permission android:name="android.permission.REAL_GET_TASKS" />
|
|
|
|
|
2012-08-17 14:17:06 -07:00
|
|
|
<application android:label="Memory Usage Test">
|
|
|
|
<uses-library android:name="android.test.runner" />
|
|
|
|
</application>
|
2015-05-05 12:00:24 -07:00
|
|
|
</manifest>
|