My code Snippet: I have tried altbeacon gradle. I have declared Region as per below code.
I have wrote this line in onCreate method of Application class. Region region = new Region("all beacon", null, null, null);
I can get Beacon's major,minor and uuid in "didRangeBeaconsInRegion".
Problem : I didn't identify beacon in didEnterRegion() and didExitRegion() method as getting null value of major,minor and uuid.
How can i solve this issue?
Nothing is wrong, this is how beacon monitoring works. When you monitor, you get notified when any beacon matching a wildcard pattern defined by your Region is detected. This notification tells you that a matching beacon was detected, and provides a reference to the Region object being monitored.
In the example shown, the defined Region has null for each of the three beacon identifiers, meaning it will match any beacon. It therefore provides only a single callback when any beacon is detected and does not tell you the identifiers of what matched.
You have two choices for getting access to the identifiers:
If you only care about a couple of beacons, you can monitor for multiple explicit regions like:
Region region1 = new Region("first beacon", "2F234454-CF6D-4A0F- ADF2-F4911BA9FFA6", "1", " 2");
This will give you a Region object in the callback with all identifiers set.Use ranging APIs which give you a callback every second with a list of all beacons with identifiers matching the defined region.
Below is a full Activity implementation for option 1. When you run this, you will see the following in LogCat:
Note that the first region entry will all null identifiers is sent because the activity is also monitoring an all null region.