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
Something has changed recently. My apps are no longer receiving beacon scan results and on further investigation, it appears that we never get the "scannerReady" channel method back!
I have also pulled the latest demo example from git and this is also is not seeing the beacons. I believe the issue is the same.
Logcat is only showing "Method: isPermissionDialogShown". We never see the 'scannerReady' debug.
I have been testing this on a Google Pixel 4 and an Oppo Find x3 lite.
Note - I did have to make some changes to the sample demo in order for it to work...
WidgetsBinding.instance.addObserver(this);
was changed to..
WidgetsBinding.instance?.addObserver(this);
and
WidgetsBinding.instance.removeObserver(this);
was changed to..
WidgetsBinding.instance?.removeObserver(this);
The text was updated successfully, but these errors were encountered:
Something has changed recently. My apps are no longer receiving beacon scan results and on further investigation, it appears that we never get the "scannerReady" channel method back!
I have also pulled the latest demo example from git and this is also is not seeing the beacons. I believe the issue is the same.
Logcat is only showing "Method: isPermissionDialogShown". We never see the 'scannerReady' debug.
I have been testing this on a Google Pixel 4 and an Oppo Find x3 lite.
Note - I did have to make some changes to the sample demo in order for it to work...
WidgetsBinding.instance.addObserver(this);
was changed to..
WidgetsBinding.instance?.addObserver(this);
and
WidgetsBinding.instance.removeObserver(this);
was changed to..
WidgetsBinding.instance?.removeObserver(this);
The text was updated successfully, but these errors were encountered: