Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2c355e26 authored by Doug Zongker's avatar Doug Zongker Committed by Android (Google) Code Review
Browse files

Merge "expose bootloader & radio versions, hardware string in API"

parents f81f9ef6 74885efc
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
@@ -109717,6 +109717,16 @@
 visibility="public"
>
</field>
<field name="BOOTLOADER"
 type="java.lang.String"
 transient="false"
 volatile="false"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="BRAND"
 type="java.lang.String"
 transient="false"
@@ -109777,6 +109787,16 @@
 visibility="public"
>
</field>
<field name="HARDWARE"
 type="java.lang.String"
 transient="false"
 volatile="false"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="HOST"
 type="java.lang.String"
 transient="false"
@@ -109827,6 +109847,16 @@
 visibility="public"
>
</field>
<field name="RADIO"
 type="java.lang.String"
 transient="false"
 volatile="false"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="TAGS"
 type="java.lang.String"
 transient="false"
+4 −4
Original line number Diff line number Diff line
@@ -53,14 +53,14 @@ public class Build {
    /** The end-user-visible name for the end product. */
    public static final String MODEL = getString("ro.product.model");

    /** @pending The system bootloader version number. */
    /** The system bootloader version number. */
    public static final String BOOTLOADER = getString("ro.bootloader");

    /** @pending The radio firmware version number. */
    /** The radio firmware version number. */
    public static final String RADIO = getString("gsm.version.baseband");

    /** @pending The device serial number. */
    public static final String SERIAL = getString("ro.serialno");
    /** The name of the hardware (from the kernel command line or /proc). */
    public static final String HARDWARE = getString("ro.hardware");

    /** Various version strings. */
    public static class VERSION {