FYI, I'm developing an Xposed module.
Inspecting Android source code I've found a class named FusedLocationProvider
.
What's the difference between this Location Provider and the Fused Location Provider in Google Play Services, exposed in interface
FusedLocationProviderApi
?
Using shell command dumpsys location
, it also dumps information about providers gps
, network
and fused
.
Also I've discovered that in LocationManager.requestLocationUpdates()
, it can be used, as provider
parameter, the string fused
(defined in LocationManager
) and receive location updates which seems generated by Fused Location Provider.