I want to add my App to "Share via" Dialog. How can I do this?
You need to add an intent filter to the manifest file, specifying an action and mime type your application should handle. Something like this:
<intent-filter>
<action android:name="android.intent.action.SEND" />
<data android:mimeType="audio/*" />
</intent-filter>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With