Skip to content Skip to sidebar Skip to footer

Error With Parsing Android Sdk Content And Initializing Java Tooling In Eclipse

Every time I open Eclipse, I get the following error messages: Android SDK Content Loader: parseSdkContent failed java.lang.NullPointerException Initializing Java Tooling An intern

Solution 1:

Close all open projects and exit Eclipse. Now you can open Eclipse without getting the error. Start opening your projects one by one to find which one causes the problem. This is most likely because you deleted a Device profile inside the AVD manager.

Solution 2:

I encountered exactly the same issue this morning. This is a workspace related issue.

Solution 1 I looked into my .metadata and read .bak_number.log files . Some layouts failed to parse and my projects were out of sync with the file system. So I deleted all the .bak_number.log files. Relaunch Eclipse and the whole worskspace should work again the way you left previously.

Solution 2 However if it's not due to out of sync with the file system. Change the workspace then import all the eclipse projects from the previous workspace. Thanks the project.properties files , the dependencies are still kept.

PS : I should return to IntelliJ :)

Solution 3:

  1. first close your Eclipse

  2. Go to your workspace and rename .metadata to tushmetadata and go to tushmetadata- >.plugins -> org.eclipse.core.runtime -> .settings and copy all files from it.

  3. now open the Eclipse and go to your workspace there you can see the newly generated .metadata folder in that go to .plugins -> org.eclipse.core.runtime -> .settings and paste here and do not overwrite any file.

  4. Try to "Hello World" project and run it.

Solution 4:

Try to delete file .metadata from your android workspace folder. .Metadata folder contains all configuration files for eclipse. It works for me.

Solution 5:

Your answers might be right. What I did was to change my workspace. I redownloaded the project I was going to work on from git, and reimported it. Now it works fine :) Maybe there was some files in this project that made the error messages apear? Dunno....

Post a Comment for "Error With Parsing Android Sdk Content And Initializing Java Tooling In Eclipse"