Java.lang.NoClassDefFoundError: org.apache.commons.lang3.ArrayUtils

I have an android app that works fine. The application has two Java libraries. I installed the latest versions of Eclipse and the Android SDK on another computer, and I imported one application from the server into it, but when I run it, the program cannot find the java libraries. I tried removing them from the Build Path property, and I added them again, but this still gives me this error:

  java.lang.NoClassDefFoundError: org.apache.commons.lang3.ArrayUtils

Do you have any ideas how to solve this?

Thanks in advance.

+3
source share
1 answer

I had the same problem with some other third party library and this solution helped me

http://android.foxykeep.com/dev/how-to-fix-the-classdefnotfounderror-with-adt-17

+4

All Articles