Paldom / UniqueDeviceID

PhoneGap / Cordova unique device id (UUID) plugin for Android, iOS and Windows Phone 8. Remains the same after app uninstall.
MIT License
169 stars 96 forks source link

Windows 10 support? #20

Open lmvco opened 8 years ago

lmvco commented 8 years ago

Is Windows 10 a supported platform by this plguin? I did a quick test and the app throw error "Missing Command Error”.

Paldom commented 8 years ago

Thanks for your notice, WP8 is fine, but havent tested on Win10 yet. I'll do it, and fix it soon.

regnete commented 7 years ago

You could use EasClientDeviceInformation.Id to support Windows 8.1 and 10 (not Windows Phone):

var easClientDeviceInformation = new Windows.Security.ExchangeActiveSyncProvisioning.EasClientDeviceInformation();
var deviceUUID = easClientDeviceInformation.id;

see https://docs.microsoft.com/en-us/uwp/api/Windows.Security.ExchangeActiveSyncProvisioning.EasClientDeviceInformation#Windows_Security_ExchangeActiveSyncProvisioning_EasClientDeviceInformation_Id

Would you accept a pull request from me? Or is this repo no longer maintained?