TorchIsClosedAfterImageCapturingQuirk.java

/*
 * Copyright 2022 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.camera.camera2.internal.compat.quirk;

import android.os.Build;

import androidx.annotation.RequiresApi;
import androidx.camera.core.impl.Quirk;

import java.util.Arrays;
import java.util.List;
import java.util.Locale;

/**
 * <p>QuirkSummary
 *     Bug Id: 228272227
 *     Description: The Torch is unexpectedly turned off after taking a picture.
 *     Device(s): Redmi 4X, Redmi 5A, Mi A1, Mi A2, Mi A2 lite and Redmi 6 Pro.
 */
@RequiresApi(21) // TODO(b/200306659): Remove and replace with annotation on package-info.java
public class TorchIsClosedAfterImageCapturingQuirk implements Quirk {

    // List of devices with the issue. See b/228272227.
    public static final List<String> BUILD_MODELS = Arrays.asList(
            "mi a1",       // Xiaomi Mi A1
            "mi a2",       // Xiaomi Mi A2
            "mi a2 lite",  // Xiaomi Mi A2 Lite
            "redmi 4x",    // Xiaomi Redmi 4X
            "redmi 5a",    // Xiaomi Redmi 5A
            "redmi 6 pro"  // Xiaomi Redmi 6 Pro
    );

    static boolean load() {
        return BUILD_MODELS.contains(Build.MODEL.toLowerCase(Locale.US));
    }
}