我需要类的固定属性列表android.os.Build
。我从这里获得了列表,我将那些我知道已修复的列表加粗。通过修复,我的意思是固件更新,重置工厂,......
android.os.Build.VERSION.RELEASE //当前开发代号,如果这是发布版本,则为字符串“REL”。
android.os.Build.BOARD //底层板的名称,如“goldfish”。
android.os.Build.BOOTLOADER // 系统引导加载程序版本号。
android.os.Build.BRAND //软件定制的品牌(例如运营商),如果有的话。
android.os.Build.CPU_ABI //native code的指令集名称(CPU类型+ABI约定)。
android.os.Build.CPU_ABI2 //原生代码的第二个指令集(CPU类型+ABI约定)的名称。
android.os.Build.DEVICE // 工业设计的名称。
android.os.Build.DISPLAY //用于向用户显示的构建 ID 字符串
android.os.Build.FINGERPRINT //唯一标识此构建的字符串。
android.os.Build.HARDWARE //硬件的名称(来自内核命令行或/proc)。
android.os.Build.HOST
android.os.Build.ID //可以是变更列表编号,也可以是“M4-rc20”之类的标签。
android.os.Build.MANUFACTURER //The manufacturer of the product/hardware.
android.os.Build.MODEL //The end-user-visible name for the end product.
android.os.Build.PRODUCT //The name of the overall product.
android.os.Build.TAGS //Comma-separated tags describing the build, like "unsigned,debug".
android.os.Build.TYPE //The type of build, like "user" or "eng".
android.os.Build.USER
Please help me complete the list