I would prefer to just use openjdk-6-jdk (version 6b20-1.9.1-1ubuntu3). But I'm just starting the Android SDK installation, so if sun java is really needed, I suppose now is the time to install it. Any advice?

link|improve this question

61% accept rate
You can always try it, but is it really worth getting a headache over? If you are choosing that path on grounds of politics or principle, it might make more sense to avoid the java stage entirely and work on one of the alternative paths to generating the Dalvik bytecode that java byte code must be converted to before the device can execute it. – Chris Stratton Nov 2 '10 at 3:46
Rather than just blindly try it, I figured it would be smarter to ask here and take the advice of someone who has already done it! (FWIW, this isn't entirely political. It is simply easier to manage my machine if I only have one JDK installed. It helps that Ubuntu installed one that is free of political issues, but that's not my primary motivation.) – MountainX Nov 2 '10 at 4:03
feedback

5 Answers

up vote 5 down vote accepted

I'm using JDK for working on Android and it's fine :)

java -version
java version "1.6.0_20"
OpenJDK Runtime Environment (IcedTea6 1.9.1) (6b20-1.9.1-1ubuntu3)
OpenJDK 64-Bit Server VM (build 17.0-b16, mixed mode)

And eclipse plugin too :)

link|improve this answer
feedback

I tried it and it is working. I built and ran my project without any errors. (If I encounter errors in the future, I'll know to try the Sun JDK.)

Thanks for the feedback.

BTW, I'm running Ubuntu 10.10, and Eclipse Helios Service Release 1 Build id: 20100917-0705 My project targets Android 2.2. It works so far.

link|improve this answer
feedback

But I'm just starting the Android SDK installation, so if sun java is really needed, I suppose now is the time to install it. Any advice?

The Dalvik cross-compiler expects Sun bytecode and will fail with OpenJDK-generated class files, by all reports. Also, I'm not sure if there are any issues with other tools, such as the Eclipse ADT plug-in. You are welcome to try it, though.

link|improve this answer
feedback

My guess is it will work but I do not recommend using open JDK. Sun SDK is much better and you know it definitely works...

link|improve this answer
diffidently or definately? – crowne Nov 2 '10 at 21:21
definitely ... hehe – Jason Nov 3 '10 at 5:09
feedback

Checking build tools versions...


You are attempting to build with the incorrect version of java.

Your version is: java version "1.6.0_22". The correct version is: Java SE 1.6.

...

How do I get past this stage? (sorry for being no0b).

Cheers,

link|improve this answer
1  
Currently you need to comment out the OpenJDK check in build/core/main.mk – stsquad Apr 18 at 17:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.