How I Make My App To Be Shown On Available Apps That Have Audio To Share
I'm building a app with sounds to be shared via WhatsApp, it's almost done, however is missing a single thing, that I already tried everything, but nothing seems to work. I wanna t
Solution 1:
<intent-filter><actionandroid:name="android.intent.action.SEND" /><dataandroid:mimeType="audio/*" /></intent-filter>
//and too
<intent-filter><actionandroid:name="android.intent.action.VIEW" /><dataandroid:mimeType="audio/*" /></intent-filter>
Replace With below code
//this is to get text from other app
<intent-filter><actionandroid:name="android.intent.action.SEND" /><categoryandroid:name="android.intent.category.DEFAULT" /><dataandroid:mimeType="audio/*" /></intent-filter>
For more idea here is an official document form android : https://developer.android.com/training/sharing/receive.html
Post a Comment for "How I Make My App To Be Shown On Available Apps That Have Audio To Share"