vote up 2 vote down star
3

I'm writing an iPhone app, and I would like to use a 3rd party library for part of its functionality. I intend on selling it through the App Store and my code will not be open sourced. Which open source licenses allow this?

flag

57% accept rate

3 Answers

vote up 3 vote down

This is not legal advice, I am not a lawyer, but it sounds like you need a library with a BSD or Apache license. That would be the case if you were developing a proprietary desktop program that used an open source library. I don't know if Apple has any further restrictions for iPhone apps.

link|flag
LGPL will impose additionally restrictions. Since the phone does not support dynamic linking, and the LGPL requires you be able to substituted in modified copies of the code you will need to provide a partially built copy of the app someone can use to relink against modified version of the lib. – Louis Gerbarg Jan 20 '09 at 1:52
Thanks for the clarification, I removed the suggestion to try LGPL from my answer. – Ryan Ahearn Jan 20 '09 at 4:31
vote up 3 vote down

I don't think LGPL will work for iPhone applications.

The problem is that the iPhone runtime does not allow you to bundle shared libraries (or frameworks) with your app. Only single binary applications are allowed. The LGPL is based on the assumption that you bundle a shared library with an application. Direct linking is still forbidden.

link|flag
vote up 1 vote down

Regarding the LGPL, I believe that St3fan is incorrect, but Louis Gerbarg is correct: it is possible to use LGPL libraries in closed-source iPhone apps, but with restrictions.

If you take a look at http://en.wikipedia.org/wiki/GNU%5FLesser%5FGeneral%5FPublic%5FLicense, you can read "Alternatively, a statically linked library is allowed if either source code or linkable object files are provided."

So as Louis Gerbarg mentioned, if you use an LGPL library, you are allowed to keep your application closed-source as long as you make freely available the object (e.g. *.o) files that are needed for your customers to take your application and link it.

I go in depth into the subject of iPhone and LGPL compatibility here.


Detailed requirements on your app imposed by the LGPL license of the library:

d) Do one of the following:

0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.

link|flag
There are a number of apps currently using LGPL libraries (ffmpeg, among others) on the app store now. Regardless of legality, people are doing it. – Kenny Winker Nov 5 at 11:14

Your Answer

Get an OpenID
or

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