Empty telemetries list

I got weird problem, My app go into the onTelemetriesFound() function, but the telemetries is empt. Size=0.
I have the SCANID. What the problem? Can anyone help? Thanks!!!

code:

import com.estimote.sdk.EstimoteSDK;
import com.estimote.sdk.BeaconManager;
import com.estimote.sdk.telemetry.EstimoteTelemetry;

import java.util.List;

public class MainActivity extends AppCompatActivity {

private BeaconManager beaconManager;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

   
    beaconManager = new BeaconManager(this);



    beaconManager.setTelemetryListener(new BeaconManager.TelemetryListener() {
        private List<EstimoteTelemetry> telemetries;

        @Override
        public void onTelemetriesFound(List<EstimoteTelemetry> telemetries) {
            for (EstimoteTelemetry tlm : telemetries) {
                Log.d("TELEMETRY", "beaconID: " + tlm.deviceId +
                        ", temperature: " + tlm.temperature + " °C");
            }
        }
    });



}

@Override
protected void onResume() {
    super.onResume();


  
}
private String scanId;

@Override protected void onStart() {
    super.onStart();
    beaconManager.connect(new BeaconManager.ServiceReadyCallback() {
        @Override
        public void onServiceReady() {
            scanId = beaconManager.startTelemetryDiscovery();

        }
    });
}

@Override protected void onStop() {
super.onStop();
beaconManager.stopTelemetryDiscovery(scanId);
}
}

Hi @Endredi_Balazs,

which SDK version are you using?
Which hardware beacon version have you?

I use 1.0.3 SDK
(compile ‘com.estimote:sdk:1.0.3:release@aar’)

Firmware Version
4.9.4
Hardware Version
G1.8

OK,

I asked that because of an issue related to the 1.0.3 Android SDK and the D3.X beacon hardware versions

I have the same problem with nougat android 7.0 (telemetries received, but list is empty). But same software in android 5.0 gets the populated list of telemetries.

Propably sdk incompatibility issue with newer android APIs…

I use Android 6.0 on real device.

The Estimote APP work fine. I need just moving or not the beacon.