Hey!
I’m so far loving the Estimote environment but I’m a bit stuck here, any help would be appreciated.
We are currently developing an Android APP and I need to be get the UUID, Major, Minor once I established a connection with the beacon. The reason of doing this is checking with our own servers if the values mentioned are up to date and if they are not update them (Usually what happens when we get the beacons with factory values).
Right now I’ve been unable to find in the documentation how to do this. So far I’ve got
connectionProvider.connectToService(new DeviceConnectionProvider.ConnectionProviderCallback() {
@Override
public void onConnectedToService() {
connection = connectionProvider.getConnection(configurableDevice);
connection.connect(new DeviceConnectionCallback() {
@Override
public void onConnected() {
String UUID=connection.settings.beacon.proximityUUID().toString();
}
}
}
}
but proximityUUID doesn’t return a UUID. It’s a DeviceSetting
Any ideas? If you want some points you can also answer in my StackOverflow question