In my ios application, I am trying to distinguish between environments in order to make web api calls a suitable environment ( Development , Staging and Production ).
To do this, I created a configuration.plist file with different endpoints for each environment and:
- Duplicate the
Debug configuration and name it Development Build . - Created a new scheme called
Development (duplicated the Debug scheme) and on the Information tab ( Run ) selected Development Build configuration.
When I run Debug mode, everything works fine.
I am using cocoa pods.
If I select the Development schema, I get No such module 'JazzHands'
If I edit the Development schema to use the Debug assembly, it works fine.
So I have to miss something so that it doesn't work.
source share