feat(android): up android sdk version

This commit is contained in:
2021-05-24 22:02:00 +03:00
parent e0eddbcab5
commit 715f6807d8
5 changed files with 41 additions and 23 deletions

View File

@@ -10,6 +10,14 @@ class System {
return os.type() === 'Linux';
}
static get os() {
return (
this.isWindows ? 'windows' :
this.isLinux ? 'linux' :
undefined
);
}
static get archInt() {
if (os.arch() === 'ia32') return 32;
if (os.arch() === 'x64') return 64;