Error accessing "Java Build Path" in Eclipse

1
When I try to access MY_PROJECT_ANDROID - Properties - Java Build Path , the following message appears:

  

the currently displayed page contains invalid values

TheAndroidManifest.xmlfilelookslikethis:

<uses-sdkandroid:minSdkVersion="14"
    android:targetSdkVersion="21" />

And I can not import any Android project into Eclipse, the following always appears:

  

Invalid project description

Does anyone have any idea where the problem might be?

    
asked by anonymous 19.02.2015 / 20:35

1 answer

1

Try to start Eclipse with cmd / terminal with the option -clean

On Windows:

 Eclipse.exe -clean

On Linux:

./eclipse -clean

or if Eclipse is in your PATH

eclipse -clean

This will clear the cache of plug-ins, maybe it solves the problem.

Source: StackOverFlow USA

    
19.02.2015 / 22:50