package com.seewo.libsvendors.utils;

import android.os.SystemProperties;
import com.seewo.vcommons.constants.SeewoConstants;

/* JADX INFO: loaded from: classes.dex */
public class PropertiesUtils {
    private static final String SYSTEM_PROPERTY_CVT_PRODUCT_COMMIT = "ro.product.commit";

    private PropertiesUtils() {
    }

    public static String getProductCommit() {
        return SystemProperties.get("ro.product.commit", SeewoConstants.MODEL_EMPTY);
    }
}
