* Import fingerprint ID * Taken from https://github.com/LineageOS/android_device_xiaomi_sm8250-common/tree/lineage-18.1/libinit Signed-off-by: Jabiyeff <cebiyevanar@gmail.com>
19 lines
431 B
C++
19 lines
431 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);
|
|
|
|
std::string fingerprint_to_description(std::string fingerprint);
|
|
|
|
#endif // LIBINIT_UTILS_H
|