Hello, I've got a "other swift flag" set up for one of my schemes. It works when I build locally, but not when I try building using Xcode Cloud.
My Other Swift Flags is set up like this:
My code looks something like this:
class Config {
#if LIMITED
static let configProperty = 1
#endif
}
However, Xcode Cloud says Config has no member 'configProperty'
, when I build my 'Limited' scheme.