Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Newcomers » Newcomers » ADT dependency errors in Helios [SOLVED](Cannot import Android plugin using Linux 64 bit & Helios)
ADT dependency errors in Helios [SOLVED] [message #655458] Mon, 21 February 2011 09:31 Go to next message
Neil Underwood is currently offline Neil UnderwoodFriend
Messages: 4
Registered: February 2011
Junior Member
Hi. I'm new to Eclipse and programming in general. My problem is with trying to import ADT in Linux64 Helios. I'm using: ADT - https://dl-ssl.google.com/android/eclipse/ but when I select all and click next I receive a slew of dependency errors:
Cannot complete the install because of a conflicting dependency.
  Software being installed: Android Development Tools 9.0.0.v201101191456-93220 (com.android.ide.eclipse.adt.feature.group 9.0.0.v201101191456-93220)
  Software currently installed: Eclipse Platform 3.6.1 (Eclipse Platform 3.6.1)
  Only one of the following can be installed at once: 
    International Components for Unicode for Java (ICU4J) 4.2.1.v20100412 (com.ibm.icu 4.2.1.v20100412)
    International Components for Unicode for Java (ICU4J) 4.0.1.v20090822 (com.ibm.icu 4.0.1.v20090822)
    International Components for Unicode for Java (ICU4J) 4.0.1.v20090415 (com.ibm.icu 4.0.1.v20090415)
  Cannot satisfy dependency:
    From: Eclipse Platform 3.6.1 (Eclipse Platform 3.6.1)
    To: com.ibm.icu [4.2.1.v20100412]
  Cannot satisfy dependency:
    From: Android Development Tools 9.0.0.v201101191456-93220 (com.android.ide.eclipse.adt.feature.group 9.0.0.v201101191456-93220)
    To: org.eclipse.wst.xml.ui 0.0.0
  Cannot satisfy dependency:
    From: Java EMF Model Utilities 2.0.200.v200905140200 (org.eclipse.jem.util 2.0.200.v200905140200)
    To: bundle com.ibm.icu [3.8.1.1,4.1.0)
  Cannot satisfy dependency:
    From: Java EMF Model Utilities 2.0.201.v201001252130 (org.eclipse.jem.util 2.0.201.v201001252130)
    To: bundle com.ibm.icu [3.8.1.1,4.1.0)
  Cannot satisfy dependency:
    From: Common Frameworks 1.1.300.v200904160730 (org.eclipse.wst.common.frameworks 1.1.300.v200904160730)
    To: bundle org.eclipse.jem.util [2.0.100,3.0.0)
  Cannot satisfy dependency:
    From: Validation Framework 1.2.102.v200905201610 (org.eclipse.wst.validation 1.2.102.v200905201610)
    To: bundle org.eclipse.wst.common.frameworks [1.1.200,2.0.0)
  Cannot satisfy dependency:
    From: Validation Framework 1.2.104.v200911120201 (org.eclipse.wst.validation 1.2.104.v200911120201)
    To: bundle org.eclipse.wst.common.frameworks [1.1.200,2.0.0)
  Cannot satisfy dependency:
    From: Eclipse XML Editors and Tools 1.1.1.v200908242115 (org.eclipse.wst.xml.ui 1.1.1.v200908242115)
    To: bundle org.eclipse.wst.validation [1.2.0,1.3.0)
  Cannot satisfy dependency:
    From: Eclipse XML Editors and Tools 1.1.2.v201001222130 (org.eclipse.wst.xml.ui 1.1.2.v201001222130)
    To: bundle org.eclipse.wst.validation [1.2.0,1.3.0)


Not really sure what this all means. Could someone translate for me?

[Updated on: Tue, 22 February 2011 09:43]

Report message to a moderator

Re: ADT dependency errors in Helios [message #655517 is a reply to message #655458] Mon, 21 February 2011 14:23 Go to previous messageGo to next message
Russell Bateman is currently offline Russell BatemanFriend
Messages: 3798
Registered: July 2009
Location: Provo, Utah, USA
Senior Member

On 2011.02.21 2:31, Neil Underwood wrote:
> Hi. I'm new to Eclipse and programming in general. My problem is with
> trying to import ADT in Linux64 Helios. I'm using: ADT -
> https://dl-ssl.google.com/android/eclipse/ but when I select all and
> click next I receive a slew of dependency errors:
> [snip]
>
> Not really sure what this all means. Could someone translate for me?

Do you just need help getting Eclipse set up for Android development? If
so, I can offer this article on my experiences that also refers to a
great, first tutorial.

http://www.javahotchocolate.com/tutorials/android.html
Re: ADT dependency errors in Helios [message #655554 is a reply to message #655517] Mon, 21 February 2011 18:14 Go to previous messageGo to next message
Neil Underwood is currently offline Neil UnderwoodFriend
Messages: 4
Registered: February 2011
Junior Member
This looks like a lot of great info. I'll give this a thorough inspection. Quick question though: I'm using openJDK 1.6.0.xxx rather than Sun's/Oracle (whoever it belongs to anymore) JDK because that's just what was available in the Fedora repos. Do you recommend using the Sun JDK instead?
Re: ADT dependency errors in Helios [message #655560 is a reply to message #655554] Mon, 21 February 2011 18:22 Go to previous messageGo to next message
Russell Bateman is currently offline Russell BatemanFriend
Messages: 3798
Registered: July 2009
Location: Provo, Utah, USA
Senior Member

On 2011.02.21 11:14, Neil Underwood wrote:
> This looks like a lot of great info. I'll give this a thorough
> inspection. Quick question though: I'm using openJDK 1.6.0.xxx rather
> than Sun's/Oracle (whoever it belongs to anymore) JDK because that's
> just what was available in the Fedora repos. Do you recommend using the
> Sun JDK instead?

I'd get the JDK from
http://www.oracle.com/technetwork/java/javase/downloads/inde x.html (See
below.) It's up to you whether you install it for your computer host. I
always copy (that is, privately and not as my host's actual
installation) it for specific use by Eclipse and point to it from
eclipse.ini. I do this whether I'm on Linux or Windows. That way, I'm
not getting Java updates to my Eclipse/Java toolstack unless I do them
and I don't have to think about what's running Java on my host.

1. Click on JDK under the big Java badge
2. Select platform
3. Agree to the EULA
4. Grab the file to bring down (jdk-6u24-xxx-xxx.xxx, etc.)
Re: ADT dependency errors in Helios [message #655680 is a reply to message #655560] Tue, 22 February 2011 09:42 Go to previous messageGo to next message
Neil Underwood is currently offline Neil UnderwoodFriend
Messages: 4
Registered: February 2011
Junior Member
I tried to wipe my Eclipse install and start from scratch but ended up not being able to launch it after reinstalling. Kept giving me tons of errors about missing bundles. Something is screwy about the version that of Eclipse I was using from the Fedora repo. I scrapped it and installed fresh from the Eclipse website and ADT installed no problem. I hate when repo packages get borked like that.

Anyway, thanks for the info and hopefully I'll get up to speed enough on this Android business so that I can publish an app in the Market in lieu of my final this semester. Cheers. Cool
Re: ADT dependency errors in Helios [message #655733 is a reply to message #655680] Tue, 22 February 2011 13:41 Go to previous messageGo to next message
Russell Bateman is currently offline Russell BatemanFriend
Messages: 3798
Registered: July 2009
Location: Provo, Utah, USA
Senior Member

On 2011.02.22 2:42, Neil Underwood wrote:
> I tried to wipe my Eclipse install and start from scratch but ended up
> not being able to launch it after reinstalling. Kept giving me tons of
> errors about missing bundles. Something is screwy about the version that
> of Eclipse I was using from the Fedora repo. I scrapped it and installed
> fresh from the Eclipse website and ADT installed no problem. I hate when
> repo packages get borked like that.
>
> Anyway, thanks for the info and hopefully I'll get up to speed enough on
> this Android business so that I can publish an app in the Market in lieu
> of my final this semester. Cheers. 8)

Never, never, never install Eclipse from any Linux
distribution/repository. Always get it new from eclipse.org. There are
some weird exceptions to this on certain hardware and OS combinations,
but they are rare.

If you need help getting a good Eclipse up, check out

http://www.javahotchocolate.com/tutorials/eclipse-summary.ht ml

Ignore the bit about using only Galileo for Android development: Helios
works fine.
Re: ADT dependency errors in Helios [message #655801 is a reply to message #655733] Tue, 22 February 2011 16:29 Go to previous messageGo to next message
Eric Rizzo is currently offline Eric RizzoFriend
Messages: 3070
Registered: July 2009
Senior Member
On 2/22/11 8:41 AM, Russell Bateman wrote:
> On 2011.02.22 2:42, Neil Underwood wrote:
>> I tried to wipe my Eclipse install and start from scratch but ended up
>> not being able to launch it after reinstalling. Kept giving me tons of
>> errors about missing bundles. Something is screwy about the version that
>> of Eclipse I was using from the Fedora repo. I scrapped it and installed
>> fresh from the Eclipse website and ADT installed no problem. I hate when
>> repo packages get borked like that.
>
> Never, never, never install Eclipse from any Linux
> distribution/repository. Always get it new from eclipse.org.

+1

Eric
Re: ADT dependency errors in Helios [message #655820 is a reply to message #655801] Tue, 22 February 2011 17:46 Go to previous message
Neil Underwood is currently offline Neil UnderwoodFriend
Messages: 4
Registered: February 2011
Junior Member
Lesson learned. I took your advice and copied the JDK to my home directory. Makes sense.
Previous Topic:Dependency management with Nexus references
Next Topic:Which forum to ask about reusing key-mapping/binding feature in eclipse-based app?
Goto Forum:
  


Current Time: Wed Apr 24 20:26:50 GMT 2024

Powered by FUDForum. Page generated in 0.08287 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top