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

Commit 9d248d4a authored by Dianne Hackborn's avatar Dianne Hackborn Committed by The Android Open Source Project
Browse files

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

Merge commit 'd62ad4f1'

* commit 'd62ad4f1':
  Fix issue #1859814: Add android.os.Build.MANUFACTURER
parents 1f7f391a d62ad4f1
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -88973,6 +88973,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");