react-native-ibeacon icon indicating copy to clipboard operation
react-native-ibeacon copied to clipboard

Queation/Bug: getting “Sending `beaconsDidRange` with no listeners registered.”

Open oferRounds opened this issue 8 years ago • 1 comments

I followed the example as is, and everything worked great.

But suddenly, I stopped getting the Beacons detection event, while getting the warning: “Sending beaconsDidRange with no listeners registered.”

Any idea what might cause this? I’ve tried everything...

oferRounds avatar Oct 09 '17 07:10 oferRounds

I do have the code part:

var subscription = DeviceEventEmitter.addListener(
  'beaconsDidRange',
  (data) => {
       console.log(data);
  }
);

oferRounds avatar Oct 09 '17 07:10 oferRounds