• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2
3<manifest package="com.android.photoeditor"
4        android:versionCode="10001"
5        android:versionName="1.0.001" xmlns:android="http://schemas.android.com/apk/res/android">
6
7    <original-package android:name="com.android.photoeditor" />
8
9    <uses-sdk android:minSdkVersion="11" android:targetSdkVersion="11" />
10    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
11
12    <application
13            android:icon="@drawable/icon"
14            android:label="@string/app_name"
15            android:largeHeap="true"
16            android:hardwareAccelerated="true">
17        <activity android:name=".PhotoEditor"
18                android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen"
19                android:clearTaskOnLaunch="true"
20                android:configChanges="orientation"
21                android:screenOrientation="landscape">
22            <intent-filter>
23                <action android:name="android.intent.action.EDIT" />
24                <data android:mimeType="image/*" />
25                <category android:name="android.intent.category.DEFAULT" />
26            </intent-filter>
27        </activity>
28    </application>
29</manifest>
30