Skip to content

App doesn't appear in Android's "Edit with" picker #47

@dixe-is-on-git-hub

Description

@dixe-is-on-git-hub

When using a gallery app (e.g. Aves) and tapping the Edit button, QuickEdit doesn't
show up in the app chooser. This is because the app doesn't declare an ACTION_EDIT
intent filter for image MIME types in the manifest.

To fix this, add the following intent filter to the relevant Activity in AndroidManifest.xml:

intent-filter
action android:name="android.intent.action.EDIT" /
data android:mimeType="image/*" /
category android:name="android.intent.category.DEFAULT" /
/intent-filter

This would allow QuickEdit to appear natively as an editor option system-wide,
making it possible to set it as the default image editor from any gallery app.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions