mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-23 13:08:00 +01:00
39 lines
1.1 KiB
XML
39 lines
1.1 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">
|
|
|
|
<activity
|
|
android:name=".activities.EditActivity">
|
|
|
|
<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: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>
|
|
</application>
|
|
</manifest>
|