getBuildPath static method

String getBuildPath(
  1. String platform
)

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 '';
  }
}