Hello,
I downloaded the latest Estimote SDK and I’m trying to use the BulkUpdater but I’ve been unable to do so.
``
ConfigurableDevicesScanner cds=new ConfigurableDevicesScanner(getApplicationContext());
cds.enableBulkFirmwareUpdate(new BulkUpdater.BulkUpdaterCallback() {
@Override
public void onReceivedDevicesToUpdate(List<DeviceId> list, BulkUpdater.Status status) {
for(DeviceId d : list) { }
}
@Override
public void onDeviceStatusChange(ConfigurableDevice configurableDevice, BulkUpdater.Status status, String s) {
String test="";
}
@Override
public void onFinished(int i, int i1) {
String prueba="";
}
@Override
public void onError(DeviceConnectionException e) {
String prueba="";
}
});
}
After this I’m lost. What am I supposed to do? Has anyone enabled this feature?`