Error accessing "Java Build Path" in Eclipse

Asked

Viewed 603 times

1

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

the Currently displayed page contains invalid values

inserir a descrição da imagem aqui

The archive Androidmanifest.xml is like this:

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

And I can’t import any Android project to Eclipse, always appears the following:

Invalid project Description

Does anyone have any idea where the problem might be?

  • See if these 2 Soen questions help you: http://stackoverflow.com/questions/5784652/eclipse-invalid-project-description-when-creating-new-project-existing-so and http://stackoverflow.com/questions/3311474/problem-importing-android-archives-into-eclipse.

  • When I tried to import again, under another name, I had the same mistake... And the same error persists in all other attempts too.

  • PS.: I have a certain difficulty with topics in English.. It takes time to translate and I often miss important information on Google Transfer. I even researched many topics, in English, that contained the error "the Currently displayed page contains invalid values", but still nothing.

1 answer

1


Try to start Eclipse by 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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.