diff --git a/libs/node-memory-stats/index.js b/libs/node-memory-stats/index.js index 7dec6c0..47dce45 100644 --- a/libs/node-memory-stats/index.js +++ b/libs/node-memory-stats/index.js @@ -5,9 +5,10 @@ const DarwinPlatform = require('./platforms/darwin'); function getMethods() { const classes = { - 'win32': WindowsPlatform, - 'linux': LinuxPlatform, - 'darwin': DarwinPlatform + 'win32': WindowsPlatform, + 'linux': LinuxPlatform, + 'android': LinuxPlatform, + 'darwin': DarwinPlatform }; return classes[process.platform];