You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the app through the Evothings Workbench I'm able to run estimote.beacons.startRangingBeaconsInRegion passing a region and get the beacons that are in range.
However when I build the app in XCode and run it on my device, I'm able to run estimote.beacons.startEstimoteBeaconDiscovery and get everything listed. However when I run estimote.beacons.startRangingBeaconsInRegion the function that responds with beacons in range is never called.
PS: all functions don't work when running through phonegap serve
XCode does have two warning for EstimoteBeacons.m
EstimoteBeacons.m:1016:19: 'enableAnalytics:' is deprecated: Staring from SDK 3.2.0 use enableMonitoringAnalytics: or enableRangingAnalytics: instead.
EstimoteBeacons.m:1025:45: 'isAnalyticsEnabled' is deprecated: Staring from SDK 3.2.0 use enableMonitoringAnalytics: or enableRangingAnalytics: instead.
The text was updated successfully, but these errors were encountered:
Make sure you're requesting Location Services authorization. (startEstimoteBeaconDiscovery uses Core Bluetooth and so it doesn't require it, but startRangingBeaconsInRegion uses iBeacon + Core Location, and thus it needs the authorization)
Same here when I build this via cordova build ios --device and attach a safari console the error callback is triggered with The operation couldn’t be completed. (kCLErrorDomain error 5.) right after I start startRangingBeaconsInRegion
I'm using the sample app located in examples/beacon-finder
When running the app through the Evothings Workbench I'm able to run
estimote.beacons.startRangingBeaconsInRegion
passing a region and get the beacons that are in range.However when I build the app in XCode and run it on my device, I'm able to run
estimote.beacons.startEstimoteBeaconDiscovery
and get everything listed. However when I runestimote.beacons.startRangingBeaconsInRegion
the function that responds with beacons in range is never called.PS: all functions don't work when running through
phonegap serve
XCode does have two warning for
EstimoteBeacons.m
The text was updated successfully, but these errors were encountered: