编译错误-com.android.dx.cf.iface.ParseException,Dx unsupported class file version 52.0 …while parsing

Dx unsupported class file version 52.0 …while parsing


最近在项目中遇到如上两个错误,解决方案:

右击项目名称 -> Properties -> Java Build Path

取消Order and Export标签下Android Private Libraries 和 Android Dependencies选项的勾选;

编译错误-com.android.dx.cf.iface.ParseException,Dx unsupported class file version 52.0 …while parsing_第1张图片

Order and Export有两个属性,调用优先级的问题,越在上边调用优先级越高。例如,在同包同类名的情况下,将优先从上到下执行搜索调用,打勾与不打勾的区别在于导出jar包时是否将这个库的内容也打包到jar中,勾为包含,不勾为不包含。


编译错误-com.android.dx.cf.iface.ParseException,Dx unsupported class file version 52.0 …while parsing_第2张图片

解决方案:

编译错误-com.android.dx.cf.iface.ParseException,Dx unsupported class file version 52.0 …while parsing_第3张图片


网友提供的方案

如果使用eclipse时遇到如标题的问题 
原因是jdk版本是1.8,runtime版本是1.6,导致无法正常解析 
eclipse修改设定 
Window->Preference->Java->Compiler 
Window->Preference->Java->Installed JREs 
两处保持一致版本 
Installed JREs->Execution Environment中 
JavaSE-1.6选择Compatible JREs选择jdk 1.6 
JavaSE-1.8选择Compatible JREs选择jdk 1.8

重启eclipse后运行生效,问题解决。


你可能感兴趣的:(android知识点)