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"
|
|
|
|
package="com.android.rs.image">
|
2011-09-07 18:00:37 -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-04-22 12:42:47 -07:00
|
|
|
<application android:label="Image Processing"
|
|
|
|
android:hardwareAccelerated="true">
|
2011-09-07 18:00:37 -07:00
|
|
|
<uses-library android:name="android.test.runner" />
|
2011-02-17 14:43:27 -08:00
|
|
|
<activity android:name="ImageProcessingActivity">
|
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>
|
2011-09-07 18:00:37 -07:00
|
|
|
|
|
|
|
<instrumentation android:name=".ImageProcessingTestRunner"
|
|
|
|
android:targetPackage="com.android.rs.image"
|
|
|
|
android:label="Test runner for Image Processing Benchmark Test"
|
|
|
|
/>
|
2009-10-09 16:05:25 -07:00
|
|
|
</manifest>
|