I am using Eddystone-URL with Android Beacon Library. I put the compressed URL in the dataFileds of the Beacon but when I receive the signal, the dataFields are empty Why could this be happenning? attach here the transmiter's code:
try {
byte[] buf = UrlBeaconUrlCompressor.compress("http://www.google.com");
beacon = new Beacon.Builder()
.setId1("0000FEAA-0001-1000-8000-00805F9B34FB")
.setManufacturer(0xFEAA)
.setTxPower(-59)
.setDataFields(bytesToListOfLongs(buf))
.build();
} catch (MalformedURLException e) {
e.printStackTrace();
}
BeaconParser beaconParser = new BeaconParser()
.setBeaconLayout(BeaconParser.EDDYSTONE_URL_LAYOUT);
beaconTransmitter = new BeaconTransmitter(getApplicationContext(), beaconParser);
I decoded the DataFields before starting to transmit and I see well the URL but I am not receiving anything in this fields in the other smartphone.
You simply cannot use data fields for this case. Data fields are designed to hold only a few bits of information.
Instead, place that data you want to transfer inside the ID1 field itself. In the case of iBeacon and AltBeacon format, that Id is 16 bytes long. You will need to convert your days bytes to always be exactly 16 bytes and format them as a uuid so the Identifier parse method can convert them to an identifier.