feat(android): up android sdk version
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user