Every time I open Eclipse, I get the following error messages:
Android SDK Content Loader: parseSdkContent failed java.lang.NullPointerException
Initializing Jav
For me, the source of the NullPointerException
problem was a host-side Junit test project that references (and tests) code from an Android project. It didn't have a project.properties
file. It's not an Android project, but for some reason the newer versions of the SDK somehow expects the file there. To fix the problem, I just copied a project.properties
file from an Android project to the host unit test project.