mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
Garmin: Don't advertise support for cycling/running VO2max for vivoactive 5 and lily 2 active
This commit is contained in:
committed by
José Rebelo
parent
9235719642
commit
0636edbb7e
+10
@@ -23,4 +23,14 @@ public class GarminLily2ActiveCoordinator extends GarminWatchCoordinator {
|
||||
public boolean supportsTrainingLoad(@NonNull GBDevice device) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsVO2MaxCycling(@NonNull GBDevice device) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsVO2MaxRunning(@NonNull GBDevice device) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
+11
-1
@@ -23,4 +23,14 @@ public class GarminVivoActive5Coordinator extends GarminWatchCoordinator {
|
||||
public boolean supportsTrainingLoad(@NonNull GBDevice device) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsVO2MaxCycling(@NonNull GBDevice device) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsVO2MaxRunning(@NonNull GBDevice device) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user