This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class GeofenceListenerImpl implements GeofenceListener { | |
@Override | |
public void onExit(String id) { | |
} | |
@Override | |
public void onEntered(String id) { | |
if(!Display.getInstance().isMinimized()) { | |
Display.getInstance().callSerially(() -> { | |
Dialog.show("Welcome", "Thanks for arriving", "OK", null); |