I\'ve got this code
lm = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE); boolean isGPS = lm.isProviderEnabled (LocationManager.GPS_PROVI
To fix GPS isProviderEnabled Always returns false on Android 6, add this to your manifest:
Titanium cannot find GPS hardware on android 5.0 & above, thus it keeps returning false. add above line to fix issue.