getVersion static method
Implementation
static String getVersion() {
if(!isWeb()) {
try {
return Platform.version.split(" ")[0];
} catch(e) {
return '0';
}
}
return '';
}
static String getVersion() {
if(!isWeb()) {
try {
return Platform.version.split(" ")[0];
} catch(e) {
return '0';
}
}
return '';
}