I am trying to reference a Java and an Android library (that I created) to use within my Android application built in Eclipse.
I am referencing the Java library via Properties-->Java Build Path-->Projects-->Add.
I am referencing the Android library via Properties-->Android-->Library-->Add.
Both of these are shown within the windows after adding them. I also moved the Java library to the top of the list within Properties-->Java Build Path-->Order and Export.
My project compiles fine but when I run the application on my device I get a NoClassDefFoundError from the Java library. The class is in there and should work.
Did I miss something that I need to link in order to get this running correctly?