views:

347

answers:

2

Hay, how do i import org.apache.commons packages into android so i can use them in my applications?

Thanks

+4  A: 

If you're using eclipse:

  1. Download jar packages for libraries you are interested in
  2. Go to project properties in eclipse -> Java Build Path -> Libraries. Add External JARs here.
Nikola Smiljanić
On OS X using Eclipse i don't have an "eclipse" menu item. any ideas?
dotty
Scrap that, i found it. Life saver, thank you very much Nikola.
dotty
+1  A: 

Just for completeness' sake - if you aren't using eclipse to develop and you are building with ant - just put the jar in your libs folder of your project.
Done!

MattK