i'm follwing @hmscore/react-native-hms-location documontation with react native, i'm trying to Continuously Obtaining the Location Information with the requestLocationUpdatesWithCallback() and addFusedLocationEventListener() functions i can get the request code from requestLocationUpdatesWithCallback() but the addFusedLocationEventListener() returns nothing , like it dosen't trigered
HMSLocation.FusedLocation.Native.requestLocationUpdatesWithCallbackEx(locationRequest)
.then((res) => console.log(res))
.catch((err) => alert(err.message))
////////////////////////
HMSLocation.FusedLocation.Events.addFusedLocationEventListener(handleLocationUpdate)
/////////////////////
const handleLocationUpdate = (locationResult) => console.log(locationResult)
any solution for that
The location duration depends on the
locationRequest
configuration.The parameter settings provided in the Demo do not support continuously obtaining the Location Information. You are advised to configure the parameters as follows:
For details about the parameters, see Docs.