mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-23 04:57:59 +01:00
55 lines
1.7 KiB
XML
55 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.simplemobiletools.gallery.pro"
|
|
android:installLocation="auto">
|
|
|
|
<application
|
|
android:name=".App"
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity
|
|
android:name=".activities.EditActivity"
|
|
android:exported="true">
|
|
|
|
<intent-filter
|
|
android:name="foss-editor"
|
|
tools:node="remove">
|
|
|
|
<action android:name="android.intent.action.EDIT" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="image/*" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".activities.NewPhotoEditActivity"
|
|
android:exported="true"
|
|
android:label="@string/editor">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.EDIT" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="image/*" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".activities.NewVideoEditActivity"
|
|
android:exported="true"
|
|
android:label="@string/editor">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.EDIT" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="video/*" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|