Every time I open Eclipse, I get the following error messages:
Android SDK Content Loader: parseSdkContent failed java.lang.NullPointerException
Initializing Jav
This solution worked for me.
Close Eclipse and delete all .markers inside your workspace folder.
Restart Eclipse (once I had to restart it twice, it hang on the first but worked on the second for no aparent reason).
Of course, it's always safe to back them up first.
This is just weired. In my case when I took a subversion update, I was getting this problem. The reason was the corruption of my project.properties file (due to subversion conflict). I just corrected the file and problem got solved.
Do not delete all the full .metadata
Observation : the projects folders are created
Further - if you are using svn/git/hg have code repository links it would be destroyed, so to reinstate
Downfall - sporadic fail error may occur (sync or something) - harmless
backagain
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.