1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.android.perftest">
4    
5    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
6    
7    <uses-sdk android:minSdkVersion="11" />
8    <application android:label="PerfTest"
9      android:icon="@drawable/test_pattern">
10        <uses-library android:name="android.test.runner" />
11        <activity android:name="RsBench"
12                  android:label="RsBenchmark">
13            <intent-filter>
14                <action android:name="android.intent.action.MAIN" />
15                <category android:name="android.intent.category.LAUNCHER" />
16            </intent-filter>
17        </activity>
18      </application>
19
20      <instrumentation android:name=".RsPerfTestRunner"
21        android:targetPackage="com.android.perftest"
22        android:label="Test runner for RsBench tests"
23      />
24</manifest>
25