error while opening eclipse

后端 未结 9 708
感动是毒
感动是毒 2021-01-13 21:01

When I try opening eclipse it opens, but it shows one error i.e Android SDK content Loader has encountered a problem.parseSdkContent failed

<
相关标签:
9条回答
  • 2021-01-13 21:18

    I have the same issue. I closed all the projects then you can set the Android SDK Location. Thereafter need to open one by one and fix

    0 讨论(0)
  • 2021-01-13 21:19

    Delete the avd file in your .android folder and restart the eclipse.. it should be mostly in c:/users/... search for avd in windows search. worked for me.

    0 讨论(0)
  • 2021-01-13 21:22

    I work in this problem for 2 days. In my workspace I have 2 projects. After review both project.properties, project 1 reference project 2 and project 2 reference project 1. This cause a stackoverflow. I comment one line and the problem is solved.

    0 讨论(0)
  • 2021-01-13 21:29

    It seems Android throws these usual BS problems "Android Content SDK Loader..." and "R cannot be resolved ..." often when there are simple coding errors in String XML or Manifest.

    I just happen to have my XML in string name="city-state-zip" while there should'nt be any special characters in the name. But I only found it when Android finally pointed me to this error through gen/package/R.java file

    0 讨论(0)
  • 2021-01-13 21:31

    I had the same problem. This annoying error popped up every time I started Eclipse and even a reinstall didn't work.

    Look at the .log file in the .metadata of your workspace to find more about this error. Mine said:

    java.lang.NullPointerException at org.eclipse.core.internal.resources.ProjectDescription.hasPublicChanges(ProjectDescription.java:509)

    Eventually I found out that a .project file was missing a < name > tag that got lost somewhere when I renamed the project on the SVN server. So make sure the file isn't corrupt.

    <?xml version="1.0" encoding="UTF-8"?><projectDescription>
    <name>ProjectName</name>
    <comment></comment>
    <projects>
    
    0 讨论(0)
  • 2021-01-13 21:33

    I got the same problem and killed my two hours to resolve the issues. I have checked my work space and got two projects where project.properties file #project target= android-10 as the similar target with one of my another project to integrate Facebook SDK. I have completely deleted one project and reinstalled Eclipse-Indio 4.2.1 and then resolve the problem. Good luck!!

    0 讨论(0)
提交回复
热议问题