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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
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. |
|||||||||||
|
|
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 |
||||
|
|