1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-24 22:10:55 +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 f1f77abe18
commit 3abf78d8c2

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;
}
}