blob: b3fcfc414ab2d23fe9b4d7fbca9371a26c9f04fe [file] [log] [blame]
Jason Sams9368f0b2012-11-09 14:32:32 -08001<?xml version="1.0" encoding="utf-8"?>
2
3<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4 package="com.android.rs.imagejb">
5 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
6 <uses-sdk android:minSdkVersion="11" />
7 <application android:label="Image Processing JB"
8 android:hardwareAccelerated="true">
9 <activity android:name="ImageProcessingActivityJB">
10 <intent-filter>
11 <action android:name="android.intent.action.MAIN" />
12 <category android:name="android.intent.category.LAUNCHER" />
13 </intent-filter>
14 </activity>
15 </application>
16</manifest>