2009-10-09 16:05:25 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-02-22 10:30:32 -08:00
|
|
|
package="com.android.perftest">
|
2011-05-04 14:38:53 -07:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
2011-02-04 18:02:25 -08:00
|
|
|
<uses-sdk android:minSdkVersion="11" />
|
2011-02-22 10:30:32 -08:00
|
|
|
<application android:label="PerfTest"
|
2011-04-15 17:24:08 -07:00
|
|
|
android:icon="@drawable/test_pattern">
|
|
|
|
<uses-library android:name="android.test.runner" />
|
2011-02-22 10:30:32 -08:00
|
|
|
<activity android:name="RsBench"
|
2011-06-30 17:59:55 -07:00
|
|
|
android:label="RsBenchmark">
|
2009-10-09 16:05:25 -07:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2011-04-15 17:24:08 -07:00
|
|
|
</application>
|
|
|
|
|
|
|
|
<instrumentation android:name=".RsPerfTestRunner"
|
|
|
|
android:targetPackage="com.android.perftest"
|
|
|
|
android:label="Test runner for RsBench tests"
|
|
|
|
/>
|
2009-10-09 16:05:25 -07:00
|
|
|
</manifest>
|