Hi, I'm using custom schemes for my different configs. There is one catch thought, I have a Production scheme that is not debuggable as per it's configuration. When I press the run button in Xcode the app won't launch unless I uncheck the debug box. Is there a way to uncheck this from the scheme definition ?

Hmm, no this isn鈥檛 possible at the moment
Looks like it would require this change:
<LaunchAction
buildConfiguration = "Debug"
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
+ selectedDebuggerIdentifier = ""
+ selectedLauncherIdentifier = "Xcode.IDEFoundation.Launcher.PosixSpawn"
That's doable
That would be very convenient indeed !
Most helpful comment
That would be very convenient indeed !