Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
In C/C++ there are different macro's set for DEBUG and RELEASE mode. 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

1 Answer

up vote 1 down vote accepted
+50

IN XCode we have targets for every application. By default you get one target for each application.

Duplicate the target with the inbuilt option you have in xCode. So one for local testing and the other for live mode. You can have both the targets in release mode too here.

Every target in xCode has separate .plist file for defining some settings and yes having your code base in common. Now put your local server url in target_test's plist and real server url in target_live's plist.

Your code should read from the respective plist during run time.

Have a look

share|improve this answer
So how do I read the plist from javascript? – Leopd May 24 '12 at 21:40
You probably have to write a plugin to read the plist file in a bundle. – Futur May 25 '12 at 7:24
1  
@leopd there is no plugin found for solving this purpose. i will write one and update you with the git url.. – Futur May 28 '12 at 11:31
@Leopd the plugin in the most simplest way is ready for use. github.com/futur/NSBundleFileEngine. Let me know if you need more info. – Futur May 29 '12 at 11:28
@Leopd the plugin is updated and the bug is fixed. check the repo for more details in the usage_sample.html. Apologies for the wrong brach push, my bad ;) – Futur May 30 '12 at 8:27
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.