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

my question is simple.

Can I use a LGPL library in my paid android application? I am not going to modify the LGPL lib, I just want to use it. Is it legal?

share|improve this question
Thanks @willytate @MisterSquonk; I found more info on other forums that only partially answers the question. Seems LGPL only reluctantly allows dynamic binding in commercial apps, meaning it just wont work on Android because Android translates all classes and jars to a single bytecode "dex" file, which could be a breach of LGPL. Unless some legal expert shed some light, its better to be careful. More links: andengine.org/blog/2010/11/andengine-and-the-lgpl-clarification groups.google.com/group/android-developers/browse_thread/thread/… – Kamran Feb 7 '11 at 19:52
1  
I think the AndEngine guy doesn't understand the LGPL, and his blog post only confirms that. – Enno Mar 30 '11 at 16:41
Yes, I agree, I also checked with the authors of the lgpl-lib, they didn't have any issue with using their lib in paid android apps. I also found some other paid apps using LGPL and ASL libs. – Kamran Apr 18 '11 at 13:29
it was not clear from your question whether it was about a Java or native library. For the latter, the answer is rather simple. I believe that LGPL "user" can be restricted to a junkie with a rooted device, therefore they can rebuild the (dynamic) library and replace it in the /data/data/<app>/lib directory (and hope that the new version does not introduce breaking changes ;). For Java, Android architecture provides "dynamic" linking (through AIDL), but I don't fully understand the compliant ways of distribution of such libraries. – Alex Cohn May 16 '11 at 11:12
1  
@Alex... It is java lib, a jar file licensed under LGPL, my android app uses it and has a compile time dependency on it; so I include it as a jar file in my project. Now when I compile my app, I don't see the jar inside the resulting APK, so I assume the jar file gets merged in the single DEX file for the whole app. This DEX file is all dalvik byte code, so it is not dynamic linking. Although the author of the lgpl-lib doesn't have any issues with it; but I just wanted to know if LGPL itself allows something like that. – Kamran May 18 '11 at 10:43

4 Answers

up vote 4 down vote accepted

I've always thought LGPL was very much a 'grey area'. Although there are specifics on how LGPL code/libraries etc should be used, it doesn't necessarily reflect the exact requirements of the author(s).

Personally I would recommend contacting the author(s), explaining your concerns and asking if they are happy to allow you to use it.

share|improve this answer
I am accepting this as the right answer; I agree it is a grey area and the authors should be asked if they are happy with the intended use of their library. – Kamran Apr 18 '11 at 13:31

If you're making a paid Android app you'll probably have problems with a specific issue of LGPL: substitutability. Generally, it states that when you distribute a combined work you have to provide a user with possibility to substitute the library with a different version (e.g. newer). Very doubtful in the case of DEX file, as mentioned in previous comments.

An alternative to a single DEX file is to make from a dependent library a separate application, released on LGPL. In such an application you create a service to which you connect from your paid application. Then, to substitute the LGPL library with newer version only recompilation and reinstalling the library's APK is required.

The hassle is, of course, that now you have more than one APK to install.

share|improve this answer

This should outline your main concerns: http://answers.google.com/answers/threadview/id/439136.html

Most of it seems to be disclosing your use of the library and making sure you adhere to the rules of distribution according to the license.

share|improve this answer
1  
Yes I did read that thread, I have no issues disclosing the use of the lgpl lib; my only concern is that the android SDK produces a single "dex" file against all the java classes and jar libraries used. This resultant dex is all object/byte code, which is then packaged in the apk. It is not really dynamic linking... Can this be a breach of some lgpl article. – Kamran Feb 6 '11 at 22:26
2  
I think it might be a breach. LGPL would appear to require the library portion of your code to be editable. – William Tate Feb 6 '11 at 22:35
It is not a breach to statically (or "non-dynamically") link if you include the source of the LGPL library. – Prof. Falken Apr 25 at 16:55

The droidText library (used for exporting to PDF format on Android and released under LGPL) has a detailed explanation of how to use their library and still comply with the LGPL:

http://code.google.com/p/droidtext/wiki/LGPLCompliance

I found it very helpful. Basically you use a utililty (dex2jar) to take the jar of the library OUT of the dex file- thus allowing and end user to update with a later version of the droidText library if they want to.

share|improve this answer

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.