Search code examples
androiduniqueidentifierserial-number

Android Unique Serial Number


I am developing an android application that targets Android 4.0 (API 14) and above.

I am looking for a serial number that is unique per device and that persists for ever (dies with the device, does not change after factory resets).

I have found lots of results on the web concerning unique identifiers for android devices, but very little on the android.os.Build.SERIAL number.

So far, I eliminated the use of the ANDROID_ID because it might change after factory resets. I also eliminated the use of the IMEI because the android device might be non-phone. I cannot use the wifi or bluetooth MAC ADDRESS because the device might not have such hardware and/or such mac addresses might not be readable if the hardware is not enabled (based on what I found on the web).

I believe I might go for the android device serial number.

It is easily accessible using android.os.Build.SERIAL (since it is added in API level 9 and does not need any additional permission).

My questions are :

  • Taking into consideration that my application targets Android 4.0 (API 14) and above, is the android.os.Build.SERIAL number for the android devices unique for each device ?

  • Currently, documentation of android.os.Build.SERIAL indicates : A hardware serial number, if available. Alphanumeric only, case-insensitive. Does this mean that the serial number might not be available ?

  • What could be another alternative that meets the conditions mentioned above ?


Solution

  • Taking into consideration that my application targets Android 4.0 (API 14) and above, is the android.os.Build.SERIAL number for the android devices unique for each device ?

    According to this useful article in the Android Developers blog, android.os.Build.SERIAL should be unique if it is available. From the article:

    Devices without telephony are required to report a unique device ID here; some phones may do so also.

    Does this mean that the serial number might not be available ?

    Correct, it may not be available. Notice that they say "Devices without telephony are required...", so only devices without "telephony" (like wifi only tablets) are required to supply a SERIAL number, although some phones still do (like the Nexus 4).

    Documentation is definitely lacking on this topic, but from the wording it's possible that only "devices without telephony" are required to submit a unique ID, while phones that do submit one might not be unique.

    What could be another alternative that meets the conditions mentioned above ?

    For your situation I think your best bet is to first check for a deviceId (IMEI, or what not) and if deviceId doesn't exist then you fallback to using android.os.Build.SERIAL (since this is probably a tablet) like so:

    public static String getDeviceId(Context context) {
        final String deviceId = ((TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE)).getDeviceId();
        if (deviceId != null) {
            return deviceId;
        } else {
            return android.os.Build.SERIAL;
        }
    }
    

    Keep in mind to use deviceId you need the permission android.permission.READ_PHONE_STATE.

    So since your app's minSDK is 14, you can safely use the field android.os.Build.SERIAL. And if we assume that devices without telephony truly do always provide unique ids in SERIAL then I think this would be a safe bet on always getting a unique device id (bar any bugs of course).