up vote 2 down vote favorite
share [g+] share [fb]

I'm writing a PhoneGap application that sends requests to a central database. It needs to be able to identify the unique devices that connect to it.

PhoneGap's device.uuid property would seem to do the trick. On webOS and iPhone, I get back a unique string of alphanumeric characters, which will satisfy my need. However, the Android devices I've tested (Motorola Droid and the Android SDK emulator, both running Android 2.1) return "undefined" as the device.uuid.

device.platform and device.name return correct values on all three platforms, so the problem doesn't have to do with the device object itself (it's defined in the code blocks where I use it).

Is this an Android limitation? A problem with PhoneGap?

Is there any other way to get such a globally unique identifier if not through device.uuid?

EDIT: It appears that the deviceready event is never getting fired, which needs to happen before the device.uuid property becomes available.

link|improve this question

the deviceready function is not getting fired 'cause this code ` if ( ( state == 'loaded' || state == 'complete' ) && DeviceInfo.uuid != null )` I'm also struggling with this :C – yoshi Dec 8 '11 at 16:28
node that device.uuid is truly unique only on iOS, on Android it's a random number generated on system boot - check the docs – Leon Dec 14 '11 at 15:10
feedback

1 Answer

up vote 0 down vote accepted

I haven't yet found a solution for this, but it is worth noting that this issue is fixed in Android 2.2. But other than that, you'll have to find some other way of getting a unique device identifier if the device is running 2.1 or earlier.

link|improve this answer
Apparently this still happens on my Archos tablet, which runs Android 2.2.1 – Ory Band Jun 15 '11 at 17:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.