platform_frameworks_base/tests/MemoryUsage/AndroidManifest.xml

15 lines
609 B
XML
Raw Permalink Normal View History

2022-11-24 11:41:42 +08: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" />
<uses-permission android:name="android.permission.REAL_GET_TASKS" />
<application android:label="Memory Usage Test">
<uses-library android:name="android.test.runner" />
</application>
</manifest>