blob: b48d2082ae38de0af43ad79f829975fbfc2ff996 [file] [log] [blame]
Romain Guyd7fa1222009-10-09 16:05:25 -07001<?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
6 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
7
8 <application android:label="Image Processing">
9 <activity android:name="ImageProcessingActivity">
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>