How To Share Image To Snapchat From My Android App?
I'm adding share feature in my app, and everything works fine except sharing to Snapchat. When I send 'SEND' intent Snapchat only opens it own camera preview and my picture is lost
Solution 1:
Some app (like Snapchat) use unobvious way of accepting sent Media, so you should set to your intent component:
intentComponent = ComponentName("com.snapchat.android", "com.snapchat.android.LandingPageActivity")
intent.component = intentComponent
//use component instead of setting package
Post a Comment for "How To Share Image To Snapchat From My Android App?"