Hi,
I have a problem running the HelloWorld application on my BlackBerry 10 dev alpha device.
I use this in config.xml :
<feature id="blackberry.identity"/>
And then on index.html I have:
function ready() {
var ele = document.createElement("div");
ele.innerHTML = "uuid: " + blackberry.identity.uuid;
document.documentElement.appendChild(ele);
}
window.addEventListener("load", function(e) {
document.addEventListener("webworksready", ready);
}, false);
It works great on Ripple but it displays "null" on an actual BlackBerry 10 dev alpha, runnin BlackBerry 10.0.9.1675
Is that normal?
Thanks
Cross-device app developer.