Error updating ADT 23.0.0 in eclipse

I already went through this question, but it did not help. Update eclipse using Android 23 development tools

When starting eclipse, the error below appears.

enter image description here

When I tried checking for updates, it does nothing.

Then i tried

Help → Install new software → " https://dl-ssl.google.com/android/eclipse/ "

The error is shown below

Cannot complete the install because of a conflicting dependency. Software being installed: Android Native Development Tools 23.0.1.1256982 (com.android.ide.eclipse.ndk.feature.feature.group 23.0.1.1256982) Software currently installed: Android Native Development Tools 22.6.3.v201404151837-1123206 (com.android.ide.eclipse.ndk.feature.group 22.6.3.v201404151837-1123206) Only one of the following can be installed at once: ADT CDT Integration 23.0.1.1256982 (com.android.ide.eclipse.ndk 23.0.1.1256982) ADT CDT Integration 22.6.3.v201404151837-1123206 (com.android.ide.eclipse.ndk 22.6.3.v201404151837-1123206) Cannot satisfy dependency: From: Android Native Development Tools 23.0.1.1256982 (com.android.ide.eclipse.ndk.feature.feature.group 23.0.1.1256982) To: com.android.ide.eclipse.ndk [23.0.1.1256982] Cannot satisfy dependency: From: Android Native Development Tools 22.6.3.v201404151837-1123206 (com.android.ide.eclipse.ndk.feature.group 22.6.3.v201404151837-1123206) To: com.android.ide.eclipse.ndk [22.6.3.v201404151837-1123206] 

Can anyone help me on this. Thanks.

+7
android eclipse adt
source share
6 answers

Solved!

Go to Help - About eclipse Remove DDMS, ADT, etc. Go to the installation of the new software and use the link: - https://dl-ssl.google.com/android/eclipse/

Works great for me :)

+8
source share

Rollback to adt22.6.2, just replace the tools folder in sroid sroid.

This is a packaging error. The entire proguard file is missing. We will have an update as soon as possible, but before that just copy it from the previous version of the tools:

http://dl.google.com/android/android-sdk_r22.6.2-windows.zip

http://dl.google.com/android/android-sdk_r22.6.2-macosx.zip

So in the end, if you started with a new copy of ADT manually, the files :)

+1
source share

I also had the same problem, since nothing worked for me, I just replaced the entire adt base folder with an earlier version (which I installed initially), so it now started again

+1
source share

I ran into the same problem, was able to solve this way -

  • Eclipse → Help → About Eclipse ----> Installation Information
  • Select - Android DDMS, ADT, Android Hierarchy Viewer, Android Native Development Tools, Android TraceView and Tracer for OpenGL ES packages. Everything should be version 22.xx
  • Remove all plugins selected above.
  • Restart Eclipse
  • Install ADT from the update site - https://dl-ssl.google.com/android/eclipse/
+1
source share

Adding only an extra bit of information, since none of the above solutions worked for me ( except for the replacement )

I just went to

sdk \ tools \ lib \ monitor-x86 (32bit)

The copied configuration, the "Properties" and "Plugins" folders and inserted into the ADT \ eclipse folder, select skip where it wants to replace and rest, it will be fine, there is no need to replace the whole thing

to do

As soon as you start eclipse, it will ask you about the location of the SDK, specify the location and continue

+1
source share

Yesterday I ran into a similar problem, I tried this solution, but it still did not work properly. I encountered some errors and difficulties.

So, I reinstalled Eclipse Luna, and then did the following:

Download and install the plugin, and then update the API using the SDK manager. Now I recommend using Android Studio .

0
source share

All Articles