I have a library-only Android eclipse project (no main class, only library classes) that I want to include in my main Android Application project.
I went to the Build Path and added the library project to the "Required projects on the build path" on the Projects tab, and checked it on the "Order and Export" tab.
However, when the application is run, it emits VerifyError exception, because the class from the library project didn't happen to be packaged together in the apk.
Any solution to this?