Automate the phonegap build via Makefile, ideally driving xcode from the command line all the way to creating the ".ipa" file which can then be uploaded to apple.
Note that there are really 3 flavors of our application, which use different profiles (public/private key identity files) created via the apple developer website
1) Developer builds. Each developer has a profile.
2) Test builds. The ones we send around - we create a profile that knows about all the potential devices of our testers
3) Final build: uses a profile which works for the apple app store, and can only be run once they sign it.
These last two are the ones where we want to automate the build.
Automate the phonegap build via Makefile, ideally driving xcode from the command line all the way to creating the ".ipa" file which can then be uploaded to apple.
Note that there are really 3 flavors of our application, which use different profiles (public/private key identity files) created via the apple developer website 1) Developer builds. Each developer has a profile. 2) Test builds. The ones we send around - we create a profile that knows about all the potential devices of our testers 3) Final build: uses a profile which works for the apple app store, and can only be run once they sign it. These last two are the ones where we want to automate the build.