Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I Just installed the Android SDK R16 and JDK 7 but I keep getting the error "Android requires compiler compliance level 5.0 or 6.0. Found '1.7' instead. Please use Android Tools > Fix Project Properties." I am using some features of the JRE 1.7 so I can't just switch it to 1.6. Any ideas?

share|improve this question
What do you mean, "using some features of the 1.7 JRE"? – Dave Newton Dec 20 '11 at 17:17
1  
I use strings in switch statements, Which is not supported in JRE 1.6 (JDK 6) – rioneye Dec 20 '11 at 17:32
1  
And you've verified that the byte code will be successfully converted into something Android (which doesn't support JDK 7) can deal with? stackoverflow.com/questions/7153989/… – Dave Newton Dec 20 '11 at 18:17
Nope I just assumed that it would work. – rioneye Dec 20 '11 at 18:23
1  
Like ATOM mentioned, you must keep source compatibility with Java 5/6 during compile, so no strings in switch statements unfortunately. Anyone know when Android will support compiler compliance level 7.0? – Dennis Oct 16 '12 at 9:21

2 Answers

up vote 7 down vote accepted

You just need 1.6 present on your PC. I had the same problem. Install 1.6 JDK, and add it as known JDK, but don't actually select it for your project.

share|improve this answer
Alrighty I'll try that and get back to you – rioneye Dec 20 '11 at 16:19
So that didn't work. I added the JDK 1.6 to the Installed JRE's tab, but I still get the error. I that what you meant by adding it to the known JDK? – rioneye Dec 20 '11 at 16:41
Yes, that's exactly what I ment, since I ran into the very same problem and it worked for me. – Tomislav Markovski Dec 20 '11 at 23:12
2  
Right I guess my problem was that I wanted to use JRE 1.7 but can't since the android SDK does not support it. – rioneye Dec 20 '11 at 23:39

Yes, you can use Java 1.7 for the android development, you must keep source compatibility with Java 6 during compile and only next problem is because of changed default algorithm for jarsigner.

This is solved here: Android signing with ANT (workaround) But already fixed in the ANT https://issues.apache.org/bugzilla/show_bug.cgi?id=52344 So official support will be directly in Android SDK soon.

If you want to use the maven for the build, solution is here: http://stackoverflow.com/a/9567153/504179?stw=1

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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