dotty
dotty

Reputation: 41433

Importing org.apache.commons into android applications

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

Thanks

Upvotes: 14

Views: 13486

Answers (4)

lucidbrot
lucidbrot

Reputation: 6156

If you are using android Stuido - that doesn't yet supports adding libraries - you need to edit the src/build.gradle

I wanted to add org.apache.commons.net and My file called 'org.apache.commons.net.jar' was placed in the libs folder, so my build.gradles dependencies look now like this:

dependencies {
    compile files('libs/android-support-v4.jar')
    compile files('libs/org.apache.commons.net.jar')
}

Upvotes: 0

Zds
Zds

Reputation: 4359

Also, be warned that not all of them can be automatically converted to Dalvik. For example commons-httpclient does not convert cleanly from the release binaries, you need to go through source to make it work.

Upvotes: 3

MattK
MattK

Reputation: 1531

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!

Upvotes: 5

Nikola Smiljanić
Nikola Smiljanić

Reputation: 26873

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.

Upvotes: 14

Related Questions