Is it possible to receive content just from the YouTube app?
When a user clicks the share button inside the YouTube App (and no other app/browser), my app should be listed in the share dialog.
<intent-filter>
<action android:name="android.intent.action.SEND"/>
<category android:name="android.intent.category.DEFAULT"/>
<data
android:host="???"
android:scheme="???"
android:mimeType="text/*"/>
</intent-filter>
Can I filter by package name?