getBuildPath static method
Implementation
static String getBuildPath(String platform) {
switch (platform) {
case 'ios':
return Kstrings.iosReleasePath;
case 'android':
return Kstrings.releaseApkPath;
case 'web':
return Kstrings.webReleasePath;
case 'macos':
return Kstrings.macosReleasePath;
case 'windows':
return Kstrings.windowsReleasePath;
case 'linux':
return Kstrings.linuxReleasePath;
default:
return '';
}
}