You need to add an intent filter to the manifest file, specifying the action and mime type that your application should process. Something like that:
<intent-filter> <action android:name="android.intent.action.SEND" /> <data android:mimeType="audio/*" /> </intent-filter>
Asahi source share