26 lines
428 B
C++
26 lines
428 B
C++
/*
|
|
* Copyright (C) 2021-2025 The LineageOS Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
struct variant_info {
|
|
std::string hwc_value;
|
|
std::string sku_value;
|
|
|
|
std::string brand;
|
|
std::string device;
|
|
std::string marketname;
|
|
std::string model;
|
|
std::string build_fingerprint;
|
|
|
|
bool nfc;
|
|
};
|
|
|
|
extern const std::vector<variant_info> variants;
|