1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-24 05:50:47 +02:00

auto connects to device on startup (mainly for testing)

This commit is contained in:
dakhnod 2019-12-31 03:38:38 +01:00
parent 8796e20676
commit 2acac2146e

View File

@ -218,6 +218,12 @@ public class ControlCenterv2 extends AppCompatActivity
} else {
GBApplication.deviceService().requestDeviceInfo();
}
List<GBDevice> devices = deviceManager.getDevices();
if(devices.size() > 0){
GBApplication.deviceService().connect(devices.get(0));
}
}
@Override