Since the latest android sdk i am unable to run my android applications from eclipse anymore because they cant find classes which i have in other eclipse projects, which are
As already mentioned, Android will not directly compile and use your Java project files. Instead it takes only precompiled class files.
Here is my workaround, which I prefer because I need no "glue" project just for Android libraries. The main idea is to provide a pre-built JAR to Android, while still using the source code of the libraries while working in Eclipse:
Preferences -> Java -> Compiler) and the individual project settings. Choose 1.6 as the compiler compliance level.Properties -> Java Build Path -> Projects. Add all Java projects you want to use in your Android project.libs subdirectory (and this is the step which lets Android know your .class files!). See below for the code.Here is the code: