Unique device identification for KaiOS featured phones

Viewed 369

I am trying to find unique device identification in KaiOS featured phones such as Jio Phone. I am developing an app for featured phone using plain JavaScript and need to uniquely identify each mobile device, I am unable to find any solution for this.

Can anyone suggest any solution for the above problem?

3 Answers

You can use the device UUID as a unique identification number. It will be the same even when the app uninstalls and reinstall again.

Get UUID using the below code.

var uuid = new DeviceUUID().get();

Here is the full code of DeviceUUID

Library link

Related