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-02-04 18:02:25 -08:00
|
|
|
<uses-sdk android:minSdkVersion="11" />
|
2011-02-22 10:30:32 -08:00
|
|
|
<application android:label="PerfTest"
|
|
|
|
android:icon="@drawable/test_pattern">
|
|
|
|
<activity android:name="RsBench"
|
|
|
|
android:label="RsBenchmark"
|
|
|
|
android:theme="@android:style/Theme.Black.NoTitleBar">
|
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>
|
|
|
|
</application>
|
|
|
|
</manifest>
|