Can't update ADT plugin in Eclipse to version 23.0.0 or above

55,167

Solution 1

Help-->Install New Software-->What is already installed?

Then, Select "Android DDMS, Andoid Devlopment Tools,Android Hierarcy Viewer, Android native Development Tools, Android Traceview, Tracer for OpenGL ES" and click Uninstall.

After all this step, try Add link (https://dl-ssl.google.com/android/eclipse/) and name is ADT Plugin. This link will get the latest ADT Plugin. In this way you reinstall the ADT.

Solution 2

None of these "update" alone answers worked for me.

The solution I used is to uninstall the ADT (from Uninstalling Android ADT)

Help > About Eclipse > Installation Details

Select all of the Android modules (prefixed with com.android.ide...)

and delete them (Uninstall...) and re-add the libraries from the

help > Install new software

As listed above....

Solution 3

The only solution that worked to me was to download the current Eclipse ADT bundle from the Android site

After download it, I copied my current sdk to a folder like .../development/sdk. Then I deleted the sdk that came with this new Bundle.

I put ADT Bundle in .../development/adt-bundle-.... After start it, you jave to inform the new sdk location in Window > Preferences > Android, so in SDK Location you put the new sdk path. In my case: .../development/sdk.

Of course, you can put the sdk folder inside the new ADT Bundle folder, but I do this way, because I use Android Studio as well, so I point the two IDEs to the same SDK.

After finish this and be sure everything is working I deleted the old ADT Bundle folder.

Share:
55,167
adamhala007
Author by

adamhala007

I'm beginner in Android programing.

Updated on July 15, 2022

Comments

  • adamhala007
    adamhala007 almost 2 years

    I am beginner in Android programming. My problem is, that I can not update ADT. The problem started, when after a long time I have updated in Android SDK Manager the Android SDK Tools. Then I was trying to import a project into the workspace. But I couldn't import that, because every time I clicked the Finish button, nothing happened. Then I closed Eclipse and opened it again, and showed me the following error:

    enter image description here

    I clicked on the Check for Updates, but it didn't find anything. On the Internet I have found an URL, so I clicked Help-->Install New Software...--> Add--> and pasted this URL. When I clicked Next, it showed me the list of items which I wanted to install and also an error:

    Cannot complete the install because of a conflicting dependency.
     Software being installed: Tracer for OpenGL ES 23.0.0.1245622 (com.android.ide.eclipse.gldebugger.feature.feature.group 23.0.0.1245622)
     Software currently installed: Tracer for OpenGL ES 21.0.0.v201210310015-519525 (com.android.ide.eclipse.gldebugger.feature.group 21.0.0.v201210310015-519525)
    Only one of the following can be installed at once: 
    Tracer for OpenGL ES 23.0.0.1245622 (com.android.ide.eclipse.gldebugger 23.0.0.1245622)
    Tracer for OpenGL ES 21.0.0.v201210310015-519525 (com.android.ide.eclipse.gldebugger 21.0.0.v201210310015-519525)
    Cannot satisfy dependency:
    From: Tracer for OpenGL ES 23.0.0.1245622 (com.android.ide.eclipse.gldebugger.feature.feature.group 23.0.0.1245622)
    To: com.android.ide.eclipse.gldebugger [23.0.0.1245622]
    Cannot satisfy dependency:
    From: Tracer for OpenGL ES 21.0.0.v201210310015-519525 (com.android.ide.eclipse.gldebugger.feature.group 21.0.0.v201210310015-519525)
    To: com.android.ide.eclipse.gldebugger [21.0.0.v201210310015-519525]
    

    I have also read somewhere, that I should try to replace the plugins folder with the updated plugins folder so I tried to rename "plugins" folder in the Eclipse folder to "pluginsx" and pasted the new one I have downloaded from the site. After this I couldn't open the Eclipse.

    This site is also about the same problem as I have, and there is an answer which is accepted as the solution of the question. So I tried also to download, and copy those 3 things to folders which were mentioned in the comment below, but I have still the same problem, nothing changed.

    So now I don't have any idea, how to fix this problem. Can anyone help me, please?

    Thanks in advance.