Hay, how do i import org.apache.commons packages into android so i can use them in my applications?
Thanks
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')
}