It doesn't work when device is upgraded to Google Services version 18.3.81
iorfmer opened this issue · 0 comments
iorfmer commented
Hi,
After upgrading Google Services to version 18.3.81 in the device, it doesn't work. Location is no updated anymore. here is my implementation:
SmartLocation.with(context.getApplicationContext())
.location()
.continuous()
.config(builder.build())
.start(new OnLocationUpdatedListener() {
@Override
public void onLocationUpdated(Location location) {
latestLocation = location;
if (!firstLocation) {
firstLocation = true;
EventBus.getDefault().post(new LocationMessage(location));
}
}
});
Thanks.