mGoogleApiClient = new GoogleApiClient.Builder(this)
.enableAutoManage(this, 0 /* clientId */, this)
.addApi(Places.GEO_DATA_API)
.build();
I am a little bit confused about the clientId
here. I went to the Developer Console
and got a clientId
but it doesn't look anything like what I thought it would be.
The clientId
I got from the Developer Console
something looks like:
123456789098-ra2bgaohfs123asd12a1abc12abba1bb.apps.googleusercontent.com
I don't understand what I'm supposed to be using. Can anybody give me some clarity what to put in the clientId
argument?