private void getDeviceInfo() {
Log.d("[getDeviceInfo]", "主板: ===>"+ Build.BOARD);
Log.d("[getDeviceInfo]", "系统启动程序版本号: ===>"+ Build.BOOTLOADER);
Log.d("[getDeviceInfo]", "系统定制商: ===>"+ Build.BRAND);
Log.d("[getDeviceInfo]", "cpu指令集: ===>"+ Build.CPU_ABI);
Log.d("[getDeviceInfo]", "cpu指令集2: ===>"+ Build.CPU_ABI2);
Log.d("[getDeviceInfo]", "设置参数: ===>"+ Build.DEVICE);
Log.d("[getDeviceInfo]", "显示屏参数: ===>"+ Build.DISPLAY);
Log.d("[getDeviceInfo]", "无线电固件版本: ===>"+Build.getRadioVersion());
Log.d("[getDeviceInfo]", "硬件识别码: ===>"+Build.FINGERPRINT);
Log.d("[getDeviceInfo]", "硬件名称: ===>"+Build.HARDWARE);
Log.d("[getDeviceInfo]", "HOST: ===>"+Build.HOST);
Log.d("[getDeviceInfo]", "Build.ID: ===>"+Build.ID);
Log.d("[getDeviceInfo]", "硬件制造商: ===>"+Build.MANUFACTURER);
Log.d("[getDeviceInfo]", "版本: ===>"+Build.MODEL);
Log.d("[getDeviceInfo]", "android系统版本: ===>"+Build.VERSION.RELEASE);
Log.d("[getDeviceInfo]", "硬件序列号: ===>"+Build.SERIAL);
Log.d("[getDeviceInfo]", "手机制造商: ===>"+Build.PRODUCT);
Log.d("[getDeviceInfo]", "描述Build的标签: ===>"+Build.TAGS);
Log.d("[getDeviceInfo]", "TIME: ===>"+Build.TIME);
Log.d("[getDeviceInfo]", "builder类型: ===>"+Build.TYPE);
Log.d("[getDeviceInfo]", "USER: ===>"+Build.USER);
}