We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My code is :
LocationParams.Builder builder = new LocationParams.Builder() .setAccuracy(trackingAccuracy) .setDistance(trackingDistance) .setInterval(interval); LocationGooglePlayServicesWithFallbackProvider provider = new LocationGooglePlayServicesWithFallbackProvider(this); SmartLocation smartLocation = new SmartLocation.Builder(this).logging(true).build(); smartLocation.location(provider).continuous() .config(builder.build()).start(this); smartLocation.activity().start(this);
In most places it works correctly, but in some places onLocationUpdated never trigger. Is there anyway to check why it's not triggered?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My code is :
In most places it works correctly, but in some places onLocationUpdated never trigger.
Is there anyway to check why it's not triggered?
The text was updated successfully, but these errors were encountered: