How does one use an Estimote Beacon in a Xamarin Forms project? After scouring the vast expanse of the internet I have yet to find a straight answer. I have tried translating Estimote's Java documentation into C# but that didn't work. I've also tried using the SDK to create my own solution but that did not work as well. I feel like this should be simple:
var beaconManager = new BeaconManager();
var region = new BeaconRegion("region info");
beaconManager.StartListening(region);
beaconManager.RegionEntered += (s, e) => {
//Some Logic
}
Any help or insights would be appreciated!