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.
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_EDITintent 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.