To get network based location we use below code in java
// Check network provider is available
if( locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER) )
{
location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
}
1) So same thing how can i do from Native C code?
2) Is there any native service is available for location in android?