Java Code Examples for android.os.Build#BOOTLOADER

The following examples show how to use android.os.Build#BOOTLOADER . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AppUtils.java    From CrashReporter with Apache License 2.0 5 votes vote down vote up
public static String getDeviceDetails(Context context) {

        return "Device Information\n"
                + "\nDEVICE.ID : " + getDeviceId(context)
                + "\nUSER.ID : " + getUserIdentity(context)
                + "\nAPP.VERSION : " + getAppVersion(context)
                + "\nLAUNCHER.APP : " + getCurrentLauncherApp(context)
                + "\nTIMEZONE : " + timeZone()
                + "\nVERSION.RELEASE : " + Build.VERSION.RELEASE
                + "\nVERSION.INCREMENTAL : " + Build.VERSION.INCREMENTAL
                + "\nVERSION.SDK.NUMBER : " + Build.VERSION.SDK_INT
                + "\nBOARD : " + Build.BOARD
                + "\nBOOTLOADER : " + Build.BOOTLOADER
                + "\nBRAND : " + Build.BRAND
                + "\nCPU_ABI : " + Build.CPU_ABI
                + "\nCPU_ABI2 : " + Build.CPU_ABI2
                + "\nDISPLAY : " + Build.DISPLAY
                + "\nFINGERPRINT : " + Build.FINGERPRINT
                + "\nHARDWARE : " + Build.HARDWARE
                + "\nHOST : " + Build.HOST
                + "\nID : " + Build.ID
                + "\nMANUFACTURER : " + Build.MANUFACTURER
                + "\nMODEL : " + Build.MODEL
                + "\nPRODUCT : " + Build.PRODUCT
                + "\nSERIAL : " + Build.SERIAL
                + "\nTAGS : " + Build.TAGS
                + "\nTIME : " + Build.TIME
                + "\nTYPE : " + Build.TYPE
                + "\nUNKNOWN : " + Build.UNKNOWN
                + "\nUSER : " + Build.USER;
    }
 
Example 2
Source File: DeviceUtils.java    From Box with Apache License 2.0 4 votes vote down vote up
public static String getBootloader() {
    return Build.BOOTLOADER;
}
 
Example 3
Source File: DeviceUtils.java    From Box with Apache License 2.0 4 votes vote down vote up
public static String getBootloader() {
    return Build.BOOTLOADER;
}
 
Example 4
Source File: Device.java    From SmartPack-Kernel-Manager with GNU General Public License v3.0 4 votes vote down vote up
public static String getBootloader() {
    return Build.BOOTLOADER;
}
 
Example 5
Source File: Device.java    From MTweaks-KernelAdiutorMOD with GNU General Public License v3.0 4 votes vote down vote up
public static String getBootloader() {
    return Build.BOOTLOADER;
}
 
Example 6
Source File: Device.java    From unity-ads-android with Apache License 2.0 4 votes vote down vote up
public static String getBootloader () {
	return Build.BOOTLOADER;
}
 
Example 7
Source File: RNDeviceModule.java    From react-native-device-info with MIT License 4 votes vote down vote up
@ReactMethod(isBlockingSynchronousMethod = true)
public String getBootloaderSync() { return Build.BOOTLOADER; }
 
Example 8
Source File: Device.java    From KernelAdiutor with GNU General Public License v3.0 4 votes vote down vote up
public static String getBootloader() {
    return Build.BOOTLOADER;
}
 
Example 9
Source File: DeviceUtils.java    From DevUtils with Apache License 2.0 2 votes vote down vote up
/**
 * 获取设备引导程序版本号
 * @return 设备引导程序版本号
 */
public static String getBootloader() {
    return Build.BOOTLOADER;
}