I see around it's a recurring question regarding ACTION_SEND and which filters to use, but I can promise I searched for this.
The app development is going fine and for my testings until now I've been using images and videos:
<intent-filter>
<action android:name="android.intent.action.SEND" />
<data android:mimeType="image/*" />
<data android:mimeType="video/*" />
</intent-filter>
but now I would like to expand the app to accept ANY file (no matter what type it is), contacts (there's an option to share contact on the Contacts app) and URL (usually sent from the Browser).
for the URL I saw people using the Text before <data android:mimeType="text/plain" /> but I sounds to me like a very generic approach for a very specific char sequence.
any ideas? thanks!
<data android:type="URL" />or<data android:type="CONTACT" />for example. Which is not mimeTypes but types that can be used for Sharing around the system. As for, any file type, maybe if I put<data android:mimeType="*/*" />will it do? I'll try when I get home and update the thread. – Budius Jul 9 '12 at 12:34