mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 23:42:53 +08:00
30 lines
867 B
JavaScript
30 lines
867 B
JavaScript
/**
|
|
* this represents the mobile device, and provides properties for inspecting the model, version, UUID of the
|
|
* phone, etc.
|
|
* @constructor
|
|
*/
|
|
function Device() {
|
|
this.available = PhoneGap.available;
|
|
this.platform = null;
|
|
this.version = null;
|
|
this.name = null;
|
|
this.gap = null;
|
|
this.uuid = null;
|
|
try {
|
|
if (window.DroidGap) {
|
|
this.available = true;
|
|
this.uuid = window.DroidGap.getUuid();
|
|
this.version = window.DroidGap.getOSVersion();
|
|
this.gapVersion = window.DroidGap.getVersion();
|
|
this.platform = window.DroidGap.getPlatform();
|
|
this.name = window.DroidGap.getProductName();
|
|
}
|
|
} catch(e) {
|
|
this.available = false;
|
|
}
|
|
}
|
|
|
|
PhoneGap.addConstructor(function() {
|
|
navigator.device = window.device = new Device();
|
|
});
|