mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-28 21:06:50 +01:00
Auto connect at boot on recent androids respecting the user settings
Automatically connect at boot if gadgetbridge is configured to start at boot and to attempt an automatic connection when bluetooth is available Fixes #693 and fixes #891
This commit is contained in:
parent
65b0d9da4b
commit
f1736808cb
@ -32,7 +32,13 @@ public class AutoStartReceiver extends BroadcastReceiver {
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
if (GBApplication.getGBPrefs().getAutoStart() && Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) {
|
||||
Log.i(TAG, "Boot completed, starting Gadgetbridge");
|
||||
GBApplication.deviceService().start();
|
||||
if (GBApplication.getPrefs().getBoolean("general_autoconnectonbluetooth", false)) {
|
||||
Log.i(TAG, "Autoconnect is enabled, attempting to connect");
|
||||
GBApplication.deviceService().connect();
|
||||
} else {
|
||||
GBApplication.deviceService().start();
|
||||
}
|
||||
|
||||
PeriodicExporter.enablePeriodicExport(context);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user