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

Garmin: enable unicode Emoji for all devices

This seems to be widely supported by garmin devices, hence enable it in the base coordinator. Specific devices not supporting Unicode Emojis can override this method and return false.
This commit is contained in:
Daniele Gobbetti 2024-05-03 09:45:04 +02:00
parent 4eabf87e18
commit fee3b9188c

View File

@ -87,4 +87,9 @@ public abstract class GarminCoordinator extends AbstractBLEDeviceCoordinator {
protected static Prefs getPrefs(final GBDevice device) {
return new Prefs(GBApplication.getDeviceSpecificSharedPrefs(device.getAddress()));
}
@Override
public boolean supportsUnicodeEmojis() {
return true;
}
}