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
Using Bluecats SDK -- only these two method getting called public void didEnterBeacons(List<BCBeacon> beacons) and public void didExitBeacons(List<BCBeacon> beacons)
#21
When we detect the beacon only @OverRide
public void didEnterBeacons(List beacons) {
Log.d(TAG, "didEnterBeacons");
} is getting called and remaing methods are not executed.
when we move our app from foreground to background then
@OverRide
public void didExitBeacons(List beacons) {
Log.d(TAG, "didExitBeacons");
} is getting called
Help me with this how to execute other method when beacon is identify.. Thanks..!
The text was updated successfully, but these errors were encountered:
amithkumarsingh
changed the title
Only these two method getting called public void didEnterBeacons(List<BCBeacon> beacons) and public void didExitBeacons(List<BCBeacon> beacons)
Using Bluecats SDK -- only these two method getting called public void didEnterBeacons(List<BCBeacon> beacons) and public void didExitBeacons(List<BCBeacon> beacons)
Jun 11, 2020
When we detect the beacon only
@OverRide
public void didEnterBeacons(List beacons) {
Log.d(TAG, "didEnterBeacons");
} is getting called and remaing methods are not executed.
when we move our app from foreground to background then
@OverRide
public void didExitBeacons(List beacons) {
Log.d(TAG, "didExitBeacons");
} is getting called
Help me with this how to execute other method when beacon is identify.. Thanks..!
The text was updated successfully, but these errors were encountered: