1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-22 06:41:06 +02:00

Add support for experimental devices

This commit is contained in:
José Rebelo 2023-08-17 23:14:40 +01:00
parent 0a19f88a3f
commit e5faf518ea
4 changed files with 14 additions and 0 deletions

View File

@ -80,6 +80,9 @@ public class DeviceCandidateAdapter extends ArrayAdapter<GBDeviceCandidate> {
}
DeviceCoordinator coordinator = DeviceHelper.getInstance().getCoordinator(device);
if (coordinator.isExperimental()) {
statusLines.add(getContext().getString(R.string.device_experimental));
}
if (coordinator.getBondingStyle() == DeviceCoordinator.BONDING_STYLE_REQUIRE_KEY) {
statusLines.add(getContext().getString(R.string.device_requires_key));
}

View File

@ -258,6 +258,11 @@ public abstract class AbstractDeviceCoordinator implements DeviceCoordinator {
return BONDING_STYLE_ASK;
}
@Override
public boolean isExperimental() {
return false;
}
@Override
public boolean supportsActivityTracks() {
return false;

View File

@ -410,6 +410,11 @@ public interface DeviceCoordinator {
*/
int getBondingStyle();
/**
* Returns true if this device is in an experimental state / not tested.
*/
boolean isExperimental();
/**
* Indicates whether the device has some kind of calender we can sync to.
* Also used for generated sunrise/sunset events

View File

@ -1581,6 +1581,7 @@
<string name="device_is_currently_bonded">ALREADY BONDED</string>
<string name="device_requires_key">KEY REQUIRED, LONG PRESS TO ENTER</string>
<string name="device_unsupported">UNSUPPORTED</string>
<string name="device_experimental">EXPERIMENTAL</string>
<string name="error_background_service_reason">Starting the background service failed because of an exception. Error: </string>
<string name="pref_check_permission_status">Check permission status</string>
<string name="pref_check_permission_status_summary">Check and ask for missing permissions even when they might not be instantly needed. Disable this only if your devices actually doesn\'t support any of these features. Not granting a permission might cause issues!</string>