I search for all beacons inside the method:
public void onBeaconsDiscovered(Region region, List beacons) { Log.d(TAG, "Ranged beacons: " + beacons); Toast.makeText(MainActivity.this, "Beacon Finded: " + beacons.get(0).getMajor() + " - " + beacons.get(0).getMinor(), Toast.LENGTH_SHORT).show();
But in Beacons model no there is the battery information, only uuid, major, minor…
Where I find the battery information and how access this field?
Thanks
Mauricio