API to get SOC manufacturer and model

BUG: 158284209
Test: atest android.os.cts.BuildTest
Change-Id: I9a2e1a4f667e7751252ac0f404d0d56c452718a5
This commit is contained in:
Oliver Woodman
2020-12-04 14:55:22 +00:00
parent 40d6635701
commit be2de18471
2 changed files with 11 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ import android.app.ActivityThread;
import android.app.Application;
import android.compat.annotation.UnsupportedAppUsage;
import android.content.Context;
import android.sysprop.SocProperties;
import android.sysprop.TelephonyProperties;
import android.text.TextUtils;
import android.util.Slog;
@@ -87,6 +88,14 @@ public class Build {
/** The end-user-visible name for the end product. */
public static final String MODEL = getString("ro.product.model");
/** The manufacturer of the device's primary system-on-chip. */
@NonNull
public static final String SOC_MANUFACTURER = SocProperties.soc_manufacturer().orElse(UNKNOWN);
/** The model name of the device's primary system-on-chip. */
@NonNull
public static final String SOC_MODEL = SocProperties.soc_model().orElse(UNKNOWN);
/** The system bootloader version number. */
public static final String BOOTLOADER = getString("ro.bootloader");