I need to share some text from my app to google plus and I googled and found many links saying
to use ShareCompat and i found this code sample
Intent shareIntent = ShareCompat.IntentBuilder.from(ShareActivity.this)
.setText("This site has lots of great information about Android!
http://www.android.com")
.setType("text/plain")
.getIntent()
.setPackage("com.google.android.apps.plus");
startActivity(shareIntent);
But i want to know from where to download this ShareCompat API. Any one please can provide a link for this. Any kind of help will be appreciated.
Many thanks,
Mona
ShareCompatis part of the Android Support package, available in the Extras are of your SDK Manager.Documentation on using
ShareCompatcan be found on the Android Developer site.