AppVersionModeToString method

String AppVersionModeToString()

Implementation

String AppVersionModeToString() {
  switch (appVersionType) {
    case BuglyAppVersionMode.UNKNOWN:
      return 'Unknown';
    case BuglyAppVersionMode.DEBUG:
      return 'Debug';
    case BuglyAppVersionMode.GRAY:
      return 'Gray';
    case BuglyAppVersionMode.RELEASE:
      return 'Release';
    default:
      return 'Unknown';
  }
}