What are the possible intent-filter I need to cover to make sure that any external app requesting an image will see my app in the list?
To clarify, I'd like my app to appear when doing the following:
So far I've covered:
<intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.GET_CONTENT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
However, if using the Tumblr app and pressing "Add photo", my app does not appear in the chooser dialog. Which filter am I missing out on?
I had covered the correct intent-filters, however the Tumblr app requires the category OPENABLE, so instead of the filters I had I'm now using:
Only adding the line:
The share feature uses the following intent filter
Remember that this does not mean an app is requesting a photo but that it wants to send one somewhere.
Some applications may specify the application to open, and some applications have already set the default applications to Open.
Use this
<intent-filter>
: