Getting System build info of the device
This code shows how to get the system build information of Tizen device. It normally returns the device model and the name of the device manufacturer.
function onSuccessCallback(device) {
console.log("Device Model =" + device.model + " Manufacturer = " + device.manufacturer);
}
function onErrorCallback(error) {
console.log("Not supported: " + error.message);
}
tizen.systeminfo.getPropertyValue("BUILD", onSuccessCallback, onErrorCallback);