Referencing external classes
- by moppel
My Android project references external classfiles that are not included in the in the Android SDK. I added those classes as an external library properly in eclipse. The code compiles with no problem. But as I try to run the application I get an ClassNotFoundException by the DalvikVM, although all the neccessary classes have been ported.
Am I missing something?
The steps I did.
create new folder in eclipse android project.
copy neccessary classes in this folder.
add the folder to the classpath via eclipse.
programm
compile
run as android application
-- Exception