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

Commit d62ad4f1 authored by Dianne Hackborn's avatar Dianne Hackborn
Browse files

Fix issue #1859814: Add android.os.Build.MANUFACTURER

parent 4174e268
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -85846,6 +85846,16 @@
 visibility="public"
>
</field>
<field name="MANUFACTURER"
 type="java.lang.String"
 transient="false"
 volatile="false"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="MODEL"
 type="java.lang.String"
 transient="false"
+3 −0
Original line number Diff line number Diff line
@@ -38,6 +38,9 @@ public class Build {
    /** The name of the underlying board, like "goldfish". */
    public static final String BOARD = getString("ro.product.board");

    /** The manufacturer of the product/hardware. */
    public static final String MANUFACTURER = getString("ro.product.manufacturer");

    /** The brand (e.g., carrier) the software is customized for, if any. */
    public static final String BRAND = getString("ro.product.brand");