Estimote Android SDK 1.+

Hi there,

I’m trying to migrate my App to SDK 1.0.2.

Where is the old class “Utils” now? :scream:
I need to use Utils.computeProximity() and the other methods of the old class.

Hey Alexander,

maybe you want to use RegionUtils class?

2 Likes

@Ximun thx, exactly what I want.

next problem:
I’ve had problem with some cheap Android devices, so I often had restarted bluetooth with

Utils.restartBluetooth(...)

Is this function still available in the new 1.0.2 version?

I just want to know.
If not available, it’s no problem, I can do it :muscle:

I don’t know, maybe you can use the

BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();

from Android…

@Ximun I know this. And I know, how can I do it. and thx btw.

I just want to know, is this function still there or not.