Reputation: 58
I have just downloaded eclipse juno and when I create an activity, it isn't showing up in my project. I have tried installing http://dl-ssl.google.com/android/eclipse/ as others have suggested but it comes up with this error:
Your original request has been modified.
"Android Traceview" is already installed, so an update will be performed instead.
"Android Development Tools" is already installed, so an update will be performed instead.
"Android DDMS" is already installed, so an update will be performed instead.
"Android Hierarchy Viewer" is already installed, so an update will be performed instead.
"Android Native Development Tools" is already installed, so an update will be performed instead.
"Tracer for OpenGL ES" is already installed, so an update will be performed instead.
Cannot complete the install because of a conflicting dependency.
Software being installed: Android Development Tools 23.0.2.1259578 (com.android.ide.eclipse.adt.feature.feature.group 23.0.2.1259578)
Software currently installed: eclipse 23.0.0.1245622 (adtproduct 23.0.0.1245622)
Only one of the following can be installed at once:
Android Development Toolkit 23.0.2.1259578 (com.android.ide.eclipse.adt 23.0.2.1259578)
Android Development Toolkit 23.0.0.1245622 (com.android.ide.eclipse.adt 23.0.0.1245622)
Cannot satisfy dependency:
From: eclipse 23.0.0.1245622 (adtproduct 23.0.0.1245622)
To: com.android.ide.eclipse.adt.feature.feature.group [23.0.0.1245622]
Cannot satisfy dependency:
From: Android Development Tools 23.0.0.1245622 (com.android.ide.eclipse.adt.feature.feature.group 23.0.0.1245622)
To: com.android.ide.eclipse.adt [23.0.0.1245622]
Cannot satisfy dependency:
From: Android Development Tools 23.0.2.1259578 (com.android.ide.eclipse.adt.feature.feature.group 23.0.2.1259578)
To: com.android.ide.eclipse.adt [23.0.2.1259578]
Upvotes: 0
Views: 1785
Reputation: 247
I was facing the same problem, was able to solve in this way -
Upvotes: -1
Reputation: 3565
This is a bug with the latest bundle provided by Google. See http://code.google.com/p/android/issues/detail?id=72912.
You can do one of two options:
Install eclipse from eclipse.org and install ADT by pointing to the update site: https://dl-ssl.google.com/android/eclipse
Download bundles from here:
linux 64 bit vm: http://dl.google.com/android/adt/adt-bundle-linux-x86_64-20140702.zip
linux 32 bit vm: http://dl.google.com/android/adt/adt-bundle-linux-x86-20140702.zip
mac: http://dl.google.com/android/adt/adt-bundle-mac-x86_64-20140702.zip
win32: http://dl.google.com/android/adt/adt-bundle-windows-x86-20140702.zip
win64: http://dl.google.com/android/adt/adt-bundle-windows-x86_64-20140702.zip
Starting with ADT bundle 23.0.2, you should be able to update to future versions of ADT.
Upvotes: 3