Error in Eclipse (for Android): The type java.lang.String cannot be resolved. It is indirectly referenced from required .class files

前端 未结 2 901
滥情空心
滥情空心 2021-01-11 10:58

I am trying to run an Android project that someone else has created. I have opened the project in Eclipse as:

File --> New --> Project --> Android P         


        
相关标签:
2条回答
  • 2021-01-11 11:57

    Do one more step before running:

    Right Click(Project) -> Properties -> Java Build Path -> Libraries -> 
                                              Add Library -> Select the Java Library
    

    Click OK and then clean-build (Project -> Clean & Project -> Build All or Ctrl+B) your project. It should be fine.

    0 讨论(0)
  • 2021-01-11 11:57

    This is an annoying Eclipse Bug which seems to bite now and then. See http://dev-answers.blogspot.de/2009/06/eclipse-build-errors-javalangobject.html for a possible solution, otherwise try the following;

    Close the project and reopen it.
    
    Clean the project (It will rebuild the buildpath hence reconfiguring with the JDK libraries)
    
    OR
    
    Delete and Re-import the project and if necessary do the above steps again.
    
    0 讨论(0)
提交回复
热议问题