Adding My App As A Sharing Option In The Youtube App
Is it possible to add to the list of sharing apps my own app?. The idea is that users that have my app installed have the option to share YouTube videos to my app, so when they cli
Solution 1:
For Android: Filter incoming intents to your activity to catch the send intent:
<activity...><intent-filter><actionandroid:name="android.intent.action.SEND" /><categoryandroid:name="android.intent.category.DEFAULT" /><dataandroid:host="www.youtube.com"android:mimeType="text/*" /></intent-filter></activity>
And then your app will show up in the chooser when a user shares something from youtube.
EDIT: For iOS it is not as easy (not possible with lower iOS versions). Take a look at this question for more information about why.
Post a Comment for "Adding My App As A Sharing Option In The Youtube App"