blob: f70bbd60e2e628e902d71233d0c471e4a67d8ab9 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.android.photoeditor"
android:versionCode="10001"
android:versionName="1.0.001" xmlns:android="http://schemas.android.com/apk/res/android">
<original-package android:name="com.android.photoeditor" />
<uses-sdk android:minSdkVersion="11" android:targetSdkVersion="11" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:largeHeap="true"
android:hardwareAccelerated="true">
<activity android:name=".PhotoEditor"
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen"
android:clearTaskOnLaunch="true"
android:configChanges="orientation"
android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.EDIT" />
<data android:mimeType="image/*" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>