Home | History | Annotate | Download | only in ImageProcessing
      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      4     package="com.android.rs.image">
      5     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
      6     <uses-sdk android:minSdkVersion="17" />
      7     <application android:label="Image Processing"
      8                  android:hardwareAccelerated="true">
      9         <uses-library android:name="android.test.runner" />
     10         <activity android:name="ImageProcessingActivity">
     11             <intent-filter>
     12                 <action android:name="android.intent.action.MAIN" />
     13                 <category android:name="android.intent.category.LAUNCHER" />
     14             </intent-filter>
     15         </activity>
     16     </application>
     17 
     18     <instrumentation android:name=".ImageProcessingTestRunner"
     19       android:targetPackage="com.android.rs.image"
     20       android:label="Test runner for Image Processing Benchmark Test"
     21     />
     22 </manifest>
     23