Android Device Id Guide

Learn how to create a good device identifier

As you may have noticed, the last Pushlink.start parameter is "yourDeviceId".

PushLink.start(this, R.mipmap.ic_launcher, "yourApiKey", "yourDeviceID");

It's up to you to identify the device.

Disclaimer

There is not a default and 100% guaranteed way to retrieve the Device ID on Android. It depends on OS version, device brand, etc. That's why Pushlink externalizes the id generation.

However, Pushlink is designed for enterprise apps, and the developer has a certain control over which types of Devices and OS the application is going to run. Don't use an ID that is changed after every uninstall/install. Try to use a long live ID. Think and create your own strategy.

Must read

What should I be alert?

Be careful with not certified ROMs.

  • Fake IMEI like '004999010640000'.

  • Fake Settings.Secure.ANDROID_ID like '9774d56d682e549c'.

Be careful with Android releases. They use to change permissions and behaviors related to devices identifiers.

What happens if I set the same ID in different devices?

Don't do that. You will not be able to manage your installations properly. This will create all sorts of problems.

What happens if my device ID changes frequently?

One real-life installation will be registered many times giving you an unreal number of managed devices.

Last updated