how do i check if the gps is enabled on android device?
//  android check if gps is enabled
final LocationManager manager = (LocationManager) getSystemService( Context.LOCATION_SERVICE );
if ( !manager.isProviderEnabled( LocationManager.GPS_PROVIDER ) ) {
	buildAlertMessageNoGps();
}Source:wl.wwautturi.com