This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private Location getLocation(){ | |
long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10L; | |
long MIN_TIME_BW_UPDATES = 1; | |
Location location; | |
try { | |
mLocationManager = (LocationManager) mContext.getSystemService(Context.LOCATION_SERVICE); | |
boolean isGPSEnabled = mLocationManager.isProviderEnabled(LocationManager.GPS_PROVIDER); |
OlderNewer