diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.device-view/device-view.hbs b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.device-view/device-view.hbs index b191408c2..93d18ff95 100644 --- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.device-view/device-view.hbs +++ b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.device-view/device-view.hbs @@ -97,6 +97,7 @@
+ IMEI + | +
+ {{#if device.imei}}{{device.imei}}
+ {{else}} This information is not available yet. + {{/if}} + |
+
+ IMSI + | +
+ {{#if device.imsi}}{{device.imsi}}
+ {{else}} This information is not available yet. + {{/if}} + |
+
+ Serial Number + | +
+ {{#if device.serial}}{{device.serial}}
+ {{else}} This information is not available yet. + {{/if}} + |
+
+ MAC Address + | +
+ {{#if device.macAddress}}{{device.macAddress}}
+ {{else}} This information is not available yet. + {{/if}} + |
+
+ OS Version + | +
+ {{#if device.OSVersion}}{{device.OSVersion}}
+ {{else}} This information is not available yet. + {{/if}} + |
+
+ OS Build Date + | +
+ {{#if device.osBuildDate}}{{device.osBuildDate}}
+ {{else}} This information is not available yet. + {{/if}} + |
+
+ Vendor + | +
+ {{#if device.vendor}}{{device.vendor}}
+ {{else}} This information is not available yet. + {{/if}} + |
+
+ Model + | +
+ {{#if device.model}}{{device.model}}
+ {{else}} This information is not available yet. + {{/if}} + |
+
+ CPU Usage + | +
+ {{#if device.cpuUsage}}{{device.cpuUsage.value}}
+ {{else}} This information is not available yet. + {{/if}} + |
+
+ SSID + | +
+ {{#if device.ssid}}{{device.ssid}}
+ {{else}} This information is not available yet. + {{/if}} + |
+
+ Connection Type + | +
+ {{#if device.connectionType}}{{device.connectionType}}
+ {{else}} This information is not available yet. + {{/if}} + |
+
+ Operator + | +
+ {{#if device.operator}}{{device.operator}}
+ {{else}} This information is not available yet. + {{/if}} + |
+
+ Phone Number + | +
+ {{#if device.phoneNumber}}{{device.phoneNumber}}
+ {{else}} This information is not available yet. + {{/if}} + |
+
Extensive information is not available yet.
+ {{/if}} +