I am testing the Android Beacon Library from AltBeacon http://altbeacon.github.io/android-beacon-library/index.html
I am monitoring one "generic" region setting only the first id (UUID), and levaing id2, and id3 as null.
Region region = new Region(uuid, Identifier.parse(uuid), null, null);
I receive the didEnterRegion without problems, but i have a question. In didEnterRegion i receive the Region as a parameter, but can i know the concrete beacon that launched the event? I want to know the id1, id2, and id3 of the beacon that launches this event region, is this possible?
Thanks in advance