Tumblr SDK (or Sharekit) for Android, does it exist?

I need to integrate Tumblr into my Android app, is there an official (I could not find) or a third-party SDK?

Thanks!

edit:

I found ShareKit to be a good sharing tool on iOS, is there any equivalent in Android?

+4
source share
3 answers

The standard way to enable sharing in an Android app is to use the ACTION_SEND intent. This will allow the user to share content for any compatible application that they could install.

+1
source

Using the ACTION_SEND intent is the easiest way, but I lose all control during the sharing process: I do not control the list of applications for sharing, I can’t configure anything. And the main problem is that each application can have features of the sharing process. For example, the Facebook application uses only http links and ignores anything else. In some of my projects, I use the SDK for each social network to avoid these problems, for example. facebook sdk

+1
source

Yes, the prankster is right. You can use the ACTION_SEND intent. For more information, see this example to post a photo among an available application on an Android device.

0
source

All Articles