查看开源项目org.gradle.api.internal.project.ProjectInternal.getPluginManager()Lorg/gradle/api/internal/plu

开源项目导入报错如下


Error:Unable to find method 'org.gradle.api.internal.project.ProjectInternal.getPluginManager()Lorg/gradle/api/internal/plugins/PluginManagerInternal;'.
Possible causes for this unexpected error include:In the case of corrupt Gradle processes, you can also try closing the IDE and then killing all Java processes.


因为gradle版本问题导致

修改:1、修改项目中"gradle/wrapper/gradle-wrapper.properties"里下面属性值

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

2、build.gradle里面修改gradle版本号,和gradle-wrapper.properties版本号一直

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

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

你可能感兴趣的:(查看开源项目org.gradle.api.internal.project.ProjectInternal.getPluginManager()Lorg/gradle/api/internal/plu)