Import from Xiaomi SM8250 update signature of redmi k60 remove SafetyNet workaround Co-Authored-By: Ramii Ahmed <ramy@ahmedramy.com> Co-Authored-By: luk1337 <priv.luk@gmail.com> Co-Authored-By: klozz <carlosj@klozz.dev> Signed-off-by: flakeforever <113103193+flakeforever@users.noreply.github.com>
19 lines
444 B
C++
19 lines
444 B
C++
/*
|
|
* Copyright (C) 2021 The LineageOS Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef LIBINIT_UTILS_H
|
|
#define LIBINIT_UTILS_H
|
|
|
|
#include <string>
|
|
|
|
void property_override(std::string prop, std::string value, bool add = true);
|
|
|
|
void set_ro_build_prop(const std::string &prop, const std::string &value, bool product = false);
|
|
|
|
const std::string fingerprint_to_description(const std::string &fingerprint);
|
|
|
|
#endif // LIBINIT_UTILS_H
|