android - Is there any way to get the location updates even if the gps is off -
i working on app involves tracking of android device. found google's sample code getting location updates here working , easy implement problem stops getting location updates when mobile's gps turned off. want know there any way location updates network connection using fused location api if gps of mobile turned off.
thanks
fused location provider tries best possible location location data gps. if want location mobile network put following permission in manifest.
<uses-permission android:name="android.permission.access_coarse_location" />
theoretically, should location mobile network.
Comments
Post a Comment