summaryrefslogtreecommitdiffstats
path: root/tests/RenderScriptTests/ImageProcessing/AndroidManifest.xml
blob: 174cc65f4b6ed4523a559146dc1f503fcecedc4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.rs.image">
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />    
    <uses-sdk android:minSdkVersion="11" />
    <application android:label="Image Processing"
                 android:hardwareAccelerated="true">
        <activity android:name="ImageProcessingActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>