We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: