Commit b8362a8b authored by Chris Scott's avatar Chris Scott

Update BootReceiver.java

spacing
parent d16f28c9
...@@ -17,14 +17,14 @@ public class BootReceiver extends BroadcastReceiver { ...@@ -17,14 +17,14 @@ public class BootReceiver extends BroadcastReceiver {
* Background Geolocation Configuration params. * Background Geolocation Configuration params.
* If you're auto-running the service on BOOT, you need to manually configure the params here since the foreground app will not have been booted. * If you're auto-running the service on BOOT, you need to manually configure the params here since the foreground app will not have been booted.
*/ */
private float distanceFilter = 50; private float distanceFilter = 50;
private Integer desiredAccuracy = 0; private Integer desiredAccuracy = 0;
private Integer locationUpdateInterval = 5000; private Integer locationUpdateInterval = 5000;
private Integer activityRecognitionInterval = 10000; private Integer activityRecognitionInterval = 10000;
private long stopTimeout = 0; private long stopTimeout = 0;
private boolean debug = true; private boolean debug = true;
private boolean stopOnTerminate = false; private boolean stopOnTerminate = false;
private boolean forceReload = false; private boolean forceReload = false;
private String url = "http://posttestserver.com/post.php?dir=cordova-background-geolocation"; private String url = "http://posttestserver.com/post.php?dir=cordova-background-geolocation";
private String params = "{'foo':'bar'}"; private String params = "{'foo':'bar'}";
private String headers = "{'X-FOO':'BAR'}"; private String headers = "{'X-FOO':'BAR'}";
...@@ -52,4 +52,4 @@ public class BootReceiver extends BroadcastReceiver { ...@@ -52,4 +52,4 @@ public class BootReceiver extends BroadcastReceiver {
context.startService(backgroundServiceIntent); context.startService(backgroundServiceIntent);
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment