/* Copyright (C) 2020-2024 Andreas Shimokawa, Daniel Dakhno, José Rebelo This file is part of Gadgetbridge. Gadgetbridge is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Gadgetbridge is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ package nodomain.freeyourgadget.gadgetbridge.devices.huami.amazfitbips; import android.content.Context; import android.net.Uri; import androidx.annotation.NonNull; import java.util.regex.Pattern; import nodomain.freeyourgadget.gadgetbridge.R; import nodomain.freeyourgadget.gadgetbridge.devices.InstallHandler; import nodomain.freeyourgadget.gadgetbridge.service.DeviceSupport; import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.amazfitbips.AmazfitBipSLiteSupport; public class AmazfitBipSLiteCoordinator extends AmazfitBipSCoordinator { @Override protected Pattern getSupportedDeviceName() { return Pattern.compile("Bip S Lite", Pattern.CASE_INSENSITIVE); } @Override public InstallHandler findInstallHandler(final Uri uri, final Context context) { final AmazfitBipSLiteFWInstallHandler handler = new AmazfitBipSLiteFWInstallHandler(uri, context); return handler.isValid() ? handler : null; } @Override public int getDeviceNameResource() { return R.string.devicetype_amazfit_bips_lite; } @NonNull @Override public Class getDeviceSupportClass() { return AmazfitBipSLiteSupport.class; } }