blob: d6a2db4a46ef872936f0b2ab598f35cd0aeabf0f [file] [log] [blame]
Romain Guyd6d4a5f2009-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">
Alex Sakhartchoukd4334482010-05-19 16:28:27 -07009 <activity android:name="ImageProcessingActivity"
10 android:screenOrientation="portrait">
Romain Guyd6d4a5f2009-10-09 16:05:25 -070011 <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</manifest>