-
Notifications
You must be signed in to change notification settings - Fork 427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
device.uuid=NULL on IOS 12.3.1 #103
Comments
What would be the "correct uuid"? |
well its not giving any UUID from the device. it works on ios < 12.1 but on later updates its giving NULL |
Yes, I understood that. |
It's a unique device Id. And I am not sure. I'm using this plugin. The code for this plugin to get it is device.uuid in javascript |
I can't reproduce this issue. Is this reproducible in a new, plain Cordova app? A minimal reproduction repository would really help to debug and later fix this issue. More information on how to create one: https://github.com/apache/cordova-contribute/blob/master/create-reproduction.md |
sorry it is my fault,actually the method is work in ios version 12.2 and 12.3 |
I can't reproduce neither, even if trying to return Anyway, looks like the identifierForVendor can return nil in rare cases, that could cause a crash as mentioned earlier
https://developer.apple.com/documentation/uikit/uidevice/1620059-identifierforvendor |
i got the same issue, plugin is not working anymore after ios 12.3.1 |
Problem
using device.uuid on IOS 12.3.1 returns all as NULL
'Device Name: ' + device.name + '
' +
'Device Cordova: ' + device.cordova + '
' +
'Device Platform: ' + device.platform + '
' +
'Device UUID: ' + device.uuid + '
' +
'Device Version: ' + device.version + '
';
What is expected to happen?
on IOS 12.2 device.uuid will display the correct uuid, however on IOS 12.3.1 they return NULL.
What does actually happen?
device.uuid returns a NULL
Information
working from a cordova build, it has worked on all of our devices until we did an update to 12.3.1 . What is the work around, or a solution to gather the IOS uuid
Command or Code
run device.uuid on 12.3.1 and on 12.2.1
Environment, Platform, Device
Version information
Checklist
The text was updated successfully, but these errors were encountered: