BuildType

public enum BuildType : String

Enum class used for strongly tpying the current build environment. Conditions must be listed here to be used as conditions on the AppConfig object.

  • Indicates that the current build is being run in debug mode. This means that the build was installed via Xcode and is connected to a debugger.

    Declaration

    Swift

    case debug = "Debug"
  • Indicates that the current build was installed via TestFlight and contains a sandbox receipt.

    Declaration

    Swift

    case testFlight = "TestFlight"
  • Indicates that the current build was installed via the AppStore and contains a production receipt.

    Declaration

    Swift

    case appStore = "App Store"