I have developed a Referee Watch (https://play.google.com/store/apps/details?id=com.pipperpublishing.soccerrefpro) which tracks referees field coverage and other fitness stats using the watch GPS. This is NOT a question about ACCESS_FINE_LOCATION permissions which I am handling just fine.
I understand I can use getPackageManager().hasSystemFeature(PackageManager.FEATURE_LOCATION_GPS
to determine if the Watch has GPS. However, if a user accidentally turns OFF Settings>Location on the Watch, is there a way of detecting it? I suspect the watch will report TRUE for the above call, but then attempt to deliver location using the Fused Location Provider from the phone wifi/gps/cell. That of course is useless once you are running on the field with the phone in the bag.
I have tried looking at the Fitness Sensor sources and determining whether the source is Local or not, but that doesn't seem to work.