Hi
I've added this intent filter
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
My app shows up as a target for the intent in the chooser for many apps but not for the default mail application which is my main focus. In other words, if I open the BBC news app, for example, select some text and choose Share, my app is listed as an option. If I do the same from the mail app, it's not shown. I also tried text/* for the mimeType.
Am I missing something?
Thanks
Simon