I am trying to build a PhoneGap-based iPhone application, but I keep getting the following two errors:
./build-phonegap.sh: line 6: ./configure: No such file or directory
cp: lib/iphone/phonegap-min.js: No such file or directory
I built and installed the latest version of PhoneGap from the source on GitHub. I have checked to make sure that the PHONEGAPLIB
variable is indeed set in XCode.
Where do I get the files listed? Where do I put them (to what are those paths relative)? And why aren t they already there?
Later
It seems the problem was that the project had been created with one version of PhoneGap (one that doesn t reference an external lib
directory), but I was trying to run it with a newer one. Recreating the project with my latest version and copying over the www
directory fixed the problem.