Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android

Ashwin Kumar Kurella
Ashwin Kumar Kurella
9,984 Points

onLocationChanged callback never called.

I created a GoogleApiClient object and then built it using the GoogleApiClient.Builder class, and then created a LocationRequest object, and set all the appropriate properties of the LocationRequest object. Now, inside the onConnected callback, I make a call to LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient, mLocationRequest, this). With the help of log statements I know that GoogleApiClient connects to the LocationServices, and the onConnected callback is fired, but then the onLocationChanged callback is never fired.