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