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?
|
|
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. |
|||
|
|
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. |
|||
|
|
|
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. |
|||||||||||
|
|
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. |
|||
|
|