Is there anything similar to getsharekit.com for Android? It allows to share URL\'s to social networking sites. Is there anything similar to this or do I need to code separately
You can use also ShareCompat class from support library.
ShareCompat.IntentBuilder.from(activity) .setType("text/plain") .setChooserTitle("Share URL") .setText("http://www.url.com") .startChooser();
https://developer.android.com/reference/android/support/v4/app/ShareCompat.html