
In this way you can share code with your fellow developers even if your project is not intended to go open source.

Here is what I did.įirst of all I chose Bitbucket and not Github because Bitbucket offers free private repository for small teams. I had to find tiny bits of information sparse around the web ’cause it seems most people consider cool to have any developer configure locally their own project once they first checkout. My goal is to allow a fellow developer to checkout (Clone in Git words) the project from server and have it fully functional and ready to be run or to work on it and commit changes. This post dates back to 2016 and is migrated from an older blog. Public class MainActivity extends AppCompatActivity implements GoogleApiClient.Today I will share my experience about creating a Git repository for a new Android Studio project. The GoogleApiClient class is used to manage the connection between an Android application and Google Sign-In API. The GoogleApiClient.OnConnectionFailedListener interface of Google API overrides its unimplemented method onConnectionFailed(ConnectionResult) which returns the connection failure result.

In the MainActivity.java class, we call the () method to login through Google Sign-In API. There are two different ways of generating certification SHA-1 key. Now, we need to provide signing certification SHA-1 key of our application.ĥ. After successful creation of the Google app support configuration, it will redirect to next windows for selecting Google services.

Fill all the application detail and select your country/region and click 'Choose and configure services'.ģ. Create a Google developer account at and click on 'GET A CONFIGURATION FILE'.Ģ.

Steps to configure Android App on Google Developer Accountġ. To integrate the Google Sign-In API in our app, we need to configure our app to Google developer account and download the 'google-service.json' file for the Android application. Combining Google API in Android app helps users to login using Google account. In this tutorial, we will integrate the Google Sign-In functionality in our Android application using Google API. Next → ← prev Integrating Google Sign-In in Android App
