Nick D
Nick D

Reputation: 1

How do I add the JJIL libraries to my Android Eclipse project?

I'm trying to use the JJIL libraries with my Android project: http://code.google.com/p/jjil/

I followed all the instructions on importing libraries into eclipse on the android guides, and have had no successes. It just fails to import.

Can some one point me in the right direction with this?

Cheers,

Nick D

Upvotes: 0

Views: 1713

Answers (1)

QRohlf
QRohlf

Reputation: 2853

I recommend you download the source and add it to your project. A lot of compiled .jars won't work in Android because they contain stuff that needs to be converted to the Dalvik format. Just download the source from their google code repository and copy it into the /src folder of your project (with the whole com/whatever/whatever/ directory structure, too). The next time you start Eclipse, the source for those libraries should be in your project and building.

Upvotes: 5

Related Questions