MCPcopy Create free account
hub / github.com/ZTFtrue/My-note / run

Method run

android/AndroidGPS.java:44–51  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

42 String finalBestP = bestP;
43 handler.postDelayed(new Runnable() {
44 @SuppressLint("MissingPermission")
45 @Override
46 public void run() {
47 locationManager.requestLocationUpdates(finalBestP, 1000, 1, locationListener);
48 if (continueListener) {
49 handler.postDelayed(this, 1000 * 20);
50 }
51 }
52 }, 1000 * 20);
53 locationManager.requestLocationUpdates(bestP, 1000, 100, locationListener);
54 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected