Android Studio添加AAR文件报错:the versions of the android gradle plugin and gradle are not compatible,plea

   在项目添加AAR文件报错:Error:Execution failed for task ':app:prepareAlivcPlayerLibrary'.

> Could not expand ZIP '/xxxx/app/libs/AlivcPlayer.aar'.

报错原因:本地gradle版本过低,

因此修改 工程根目录-->gradle-->wrapper--->gradle-wrapper.properties文件:

distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip


这时报错,提示版本不兼容:

the versions of the android gradle plugin and gradle are not compatible,please do one of the followig 如图:

Android Studio添加AAR文件报错:the versions of the android gradle plugin and gradle are not compatible,plea


修改 工程根目录--->build.gradle文件 即可

Android Studio添加AAR文件报错:the versions of the android gradle plugin and gradle are not compatible,plea

修改版本号为:

dependencies {
    classpath 'com.android.tools.build:gradle:3.0.1'