The thing is that I set some defaults before I run the app under specific target:
This is how I check if my target runs or not:
if NSProcessInfo.processInfo().arguments.contains("DIFF") {}
or
if NSProcessInfo.processInfo().environment["DIFF"] != nil {}
but they works only after I compile the app on device. Once I close the app, and run again from the icon app on device, it doesn't work any more. Why?
