错误:(2,0)无法find方法’org.gradle.api.internal.file.DefaultSourceDirectorySet

我最近升级我的android工作室到3.0.1当我尝试创建新的项目我得到下面的错误我的代码运行良好的旧版本我也升级了Gradle插件

错误

Error:(2, 0) Unable to find method 'org.gradle.api.internal.file.DefaultSourceDirectorySet.(Ljava/lang/String;Lorg/gradle/api/internal/file/FileResolver;)V'. 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文件

 apply plugin: 'com.android.application' apply plugin: 'kotlin-android' android { compileSdkVersion 26 defaultConfig { applicationId "com.example.android.myapplication" minSdkVersion 22 targetSdkVersion 26 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:26.1.0' implementation 'com.android.support.constraint:constraint-layout:1.0.2' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.1' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' compile 'com.android.support:cardview-v7:26.1.0' compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" } repositories { mavenCentral() } 

尝试

 ./gradlew clean ./gradlew assemble 

看看是否有帮助? 同样在你的依赖关系中,确保将compile更改为implementation ,从Gradle 3推荐