Is there any possible way to bundle multiple IPA's or individual iOS XCode projects so that the end result is a single iOS IPA, installable on an iPhone/iPad? I have a daemon app that is entirely separate from the main app that I would like to bundle if possible.

Here is information on doing this for MacOSX apps. Does anyone know anything about iOS apps?

Edits in response to questions:

  • It is a VOIP app, I guess not a true daemon
  • It is not intended for distribution on the app store
link|improve this question

33% accept rate
Is this intended for the App Store? Apple only allows apps to have a single executable. – rob mayoff Jan 31 at 20:57
Not for app store – seibelj Jan 31 at 21:00
feedback

3 Answers

You can't have daemon apps on iPhone, only apps that allow certain things in multitasking (VOIP, location service, playing music, finishing data transfer)

link|improve this answer
Allow me to clarify, it is a VOIP daemon – seibelj Jan 31 at 21:00
Right, or in other words, "no". – DougW Jan 31 at 21:00
feedback

you cannot do this for iphone. Applications have one single executable and run in sandbox without privilege to run daemon or other services.

maybe you can do this in jailbroken devices, but i don't know.

link|improve this answer
feedback

To elaborate on what Nick said, no you cannot combine IPAs.

To achieve background execution for VOIP, location, etc, you do not create and bundle daemons or multiple applications. Instead you have to use the techniques described here, and are limited in what you can do.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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