Closed york-wei closed 9 months ago
looking good so far.
have you dogfooded this in Waypoint at @york-wei ? Both with
startTrackingVerified
, running this withbeacon: true
, and also listening to the "token" event?
verified on waypoint :+1:
Will rebase on Kenny's typescript changes once it's merged
@york-wei tried out the builds on both platforms, trackVerified
and trackVerifiedToken
looks good, can you share some QA steps for startTrackVerified
?
@york-wei tried out the builds on both platforms,
trackVerified
andtrackVerifiedToken
looks good, can you share some QA steps forstartTrackVerified
?
@KennyHuRadar set Radar.on('token', (result: string) => { console.log('token: ', result); });
and then call Radar.startTrackingVerified({ token: true });
@york-wei tried out the builds on both platforms,
trackVerified
andtrackVerifiedToken
looks good, can you share some QA steps forstartTrackVerified
?@KennyHuRadar set
Radar.on('token', (result: string) => { console.log('token: ', result); });
and then callRadar.startTrackingVerified({ token: true });
Just tried this and noticed a type error, Radar.on()
takes in string of the Event
type, you need to add the string token
to that enum within the types file.
Also noticed that Event
isn't the best name, if you have any ideas feel free to change the name of the type while you are at it? I'm thinking CallbackChannel
?
3.9.4
and iOS SDK to3.9.6
beacons
param toRadar.trackVerified()
andRadar.trackVerifiedToken()
to support beacon ranging.Radar.startTrackingVerified(token, interval, beacons)
, which callsRadar.trackVerified()
orRadar.trackVerifiedToken()
everyinterval
seconds or on network connection changes and delivers updates to listeners.token
listener for token updates.