I am calling :
GoogleApiClient client = new GoogleApiClient.Builder(this.context)
.addApi(Wearable.API)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
client.connect();
inside a UI thread and onConnected(Bundle bundle) is not called.
What am I doing wrong ?