Skip to main content

Extended Device Information

Retrieves additional device information from the Device Hardware

  • memory
  • cpumhz
  • totalstorage
  • freestorage

https://github.com/danielehrhardt/cordova-plugin-extended-device-information

Stuck on a Cordova issue?

Don't waste precious time on plugin issues.

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.

Installation#

$ npm install cordova-plugin-extended-device-information
$ npm install @ionic-native/extended-device-information
$ ionic cap sync

Supported Platforms#

  • Android

Usage#

React#

Learn more about using Ionic Native components in React

Angular#

import { ExtendedDeviceInformation } from '@ionic-native/extended-device-information/ngx';
constructor(private extendedDeviceInformation: ExtendedDeviceInformation) { }
...
console.log('The Memory is: ' + this.extendedDeviceInformation.memory);