com.mapbox.mapboxsdk.util.constants.UtilConstants Maven / Gradle / Ivy
package com.mapbox.mapboxsdk.util.constants;
public class UtilConstants {
/**
* The time we wait after the last gps location before using a non-gps location.
*/
public static final long GPS_WAIT_TIME = 20000; // 20 seconds
public static boolean DEBUGMODE = false;
public static void setDebugMode(final boolean value) {
DEBUGMODE = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy