wjc
2025-05-23 971a24a9e58a21bc306897fd3ad63012a399f7db
app/src/main/java/com/hdl/photovoltaic/utils/PermissionUtils.java
@@ -76,6 +76,18 @@
    }
    /**
     * 检查一个权限
     *
     * @param context   -
     * @param permission -
     * @return -
     */
    public static boolean checkPermission(Context context, String permission) {
        //first we need check this Drive has? CAMERA Permission
        return ContextCompat.checkSelfPermission(context, permission) == PackageManager.PERMISSION_GRANTED;
    }
    /**
     * 检查多个权限
     *
     * @param activity -
@@ -115,6 +127,7 @@
        return STATUS_REFUSE_PERMANENT;
    }
    /**
     * 申请权限有回调
     *