blob: aafd176838b92ddea03f7b4d19b8c7c4dd601493 [file] [log] [blame]
Alex Sakhartchoukc29a4442011-02-22 10:30:32 -08001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.android.perftest">
Alex Sakhartchouk4d7b19a2011-05-04 14:38:53 -07004
5 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
6
Alex Sakhartchoukc29a4442011-02-22 10:30:32 -08007 <uses-sdk android:minSdkVersion="11" />
8 <application android:label="PerfTest"
Xia Wang2738fb12011-04-15 17:24:08 -07009 android:icon="@drawable/test_pattern">
10 <uses-library android:name="android.test.runner" />
Alex Sakhartchoukc29a4442011-02-22 10:30:32 -080011 <activity android:name="RsBench"
12 android:label="RsBenchmark"
13 android:theme="@android:style/Theme.Black.NoTitleBar">
14 <intent-filter>
15 <action android:name="android.intent.action.MAIN" />
16 <category android:name="android.intent.category.LAUNCHER" />
17 </intent-filter>
18 </activity>
Xia Wang2738fb12011-04-15 17:24:08 -070019 </application>
20
21 <instrumentation android:name=".RsPerfTestRunner"
22 android:targetPackage="com.android.perftest"
23 android:label="Test runner for RsBench tests"
24 />
Alex Sakhartchoukc29a4442011-02-22 10:30:32 -080025</manifest>