Adding a Google +1 button in Android App

With the Google+ platform for Android, you are now able to integrate a native +1 button in your Android app. 1) You first need to initialize the PlusClient object in your Activity. 2) Include the PlusOneButton in your layout: <com.google.android.gms.plus.PlusOneButton xmlns:plus=”http://schemas.android.com/apk/lib/com.google.android.gms.plus” android:id=”@+id/plus_one_button” android:layout_width=”wrap_content” android:layout_height=”wrap_content” plus:size=”standard” plus:annotation=”inline” /> 3) Assign the PlusOneButton to a member variable … Read more

Google Plus sharing from android app

I found the solution for sharing on google plus from android:- Steps :- 1. Generate SH1 Key by the following commands:- $keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore -list -v 2:- Create project on google api console and also create client id. https://developers.google.com/+/mobile/android/getting-started 3.Add the google play service library to project from extras.If not exist then … Read more