How can I pass different variables into my phonegap javascript depending on whether I have xcode configured for debug or release? Most specifically right now I want to be able to switch whether the app connects to my local dev server or to the real cloud server.
One option would be if the javascript can just detect which build type is happening, then I can store both sets of urls in .js code and choose appropriately.
Somewhat better would be if there was some place to store the different urls in Xcode, like maybe in a .plist or something -- I'm not real good with XCode or Objective-C (thus phonegap) so I don't know if that's even a normal practice.
Ideally I can do this with just javascript and IDE configuration changes. If I need to change anything in Objective-C, the answer must be extremely specific about what to do.
DEBUGandRELEASEmode. In Objective-C too there should be something similar I thnk. that you can check with#ifdef– Neel Basu May 28 '12 at 5:06