16 lines
395 B
C++
16 lines
395 B
C++
/*
|
|
* Copyright (C) 2021-2025 The LineageOS Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
void property_override(const std::string& prop, const 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(const std::string& fingerprint);
|