Version 1.1.1 Accelerometer.current is always null (Android)

Using InputSystem version 1.0.2 my accelerometer was working fine but I upgraded to the preview version 1.1.1 because of the missing TouchPhase.Began issue which was a killer for me.
Now Touch is working fine but I have completely lost the accelerometer.
Accelerometer.current is nulI.

I can see nothing relevant in the changelog.
Is anyone else having this problem?
Do I have to do something different in 1.1.1?

I am not an expert or anything, but i sometimes have to turn on the gyroscope too for those to work, i don’t know if it is related to that, but i’ll just leave the code here.

private Gyroscope gyro;
void Start()
{
gyro = Input.gyro;
gyro.enabled = true;
}