Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. private void buildLocationRequest() {
  2. foregroundlocationrequest = new LocationRequest();
  3. foregroundlocationrequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
  4. foregroundlocationrequest.setInterval(1);
  5. foregroundlocationrequest.setFastestInterval(1);
  6. foregroundlocationrequest.setNumUpdates(1);
  7.  
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement