I use this sdk: http://altbeacon.github.io/android-beacon-library/samples.html My app already detect all beacons (AprilBeacons), I can get all info from beacon. BUT I should change major\minor, etc. fields and I don't know How to connect to beacon and save new data.
I create new beacon builder like:
Beacon changedBeac = new Beacon.Builder()
.setId1("2f234454-cf6d-4a0f-adf2-f4911ba9ffa6")
.setId2("1")
.setId3("2")
.setManufacturer(0x0118)
.setTxPower(-59)
.setDataFields(Arrays.asList(new Long[]{0l}))
.build();
So How to send new beacon information to selected beacon?