I want some code to be executed only in the release build, but the code does not run when the circuit is configured to use the release configuration.
What am I missing?
I have the following in my delegate deletion didFinishLaunchingWithOptions:
#if RELEASE
Countly.sharedInstance().startOnCloudWithAppKey(appKey)
Crittercism.enableWithAppID(appID)
NSLog("crash logging enabled")
#endif
The settings of the target assembly are as follows:

And the circuit is configured to use the Release configuration when the application starts:

source
share