We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
We need logic like we have in iOS that allows for different variables be set for the state of MQA when it's built through Jenkins.
Here's some example code from iOS:
var isDevelopment = true // Read configurations from the Config.plist. let configurationPath = NSBundle.mainBundle().pathForResource("Config", ofType: "plist") if((configurationPath) != nil){ let configuration = NSDictionary(contentsOfFile: configurationPath!) as! [String: AnyObject]! if let isDev = configuration["isDevelopment"] as? Bool { isDevelopment = isDev } } //Set the SDK mode Market vs QA for Production and Pre-Production #if Debug // Do nothing #else if isDevelopment { MQALogger.settings().mode = MQAMode.QA } else { MQALogger.settings().mode = MQAMode.Market } #endif