I would like to test my app with google play services in debug mode. I got the SHA1 key for my debug app and I have added it as client in in google apis. However the connection fails, I'm not able to sign in. In the app Google Play services popup appears but after a while it disappear without signing in.
The connection works well with the release app.
Here is how I build the connection:
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(Games.API).addScope(Games.SCOPE_GAMES)
.build();