Module的Build.gradle里添加依赖okhttp:3.14.0报错

Android studio 版本2.3.3,JRE1.8.0

编译报错:

Error:Error converting bytecode to dex:
Cause: Dex cannot parse version 52 byte code.
This is caused by library dependencies that have been compiled using Java 8 or above.
If you are using the 'java' gradle plugin in a library submodule add 
targetCompatibility = '1.7'
sourceCompatibility = '1.7'
to that submodule's build.gradle file.

解决方式:

在Module的Build.gradle里添加红色框里内容

Module的Build.gradle里添加依赖okhttp:3.14.0报错_第1张图片

你可能感兴趣的:(Android)