更新到 android studio preview 3.0 canary 3 后无法构建项目

Unable to Build Project after update to android studio preview 3.0 canary 3

我刚刚更新了我的 android studio preview 3.0 canary 3。在此之后我尝试 运行 该项目但显示以下错误。

Error:Could not find com.android.tools.build:gradle:3.0.0.
Searched in the following locations:
    file:/opt/android-studio-preview/gradle/m2repository/com/android/tools/build/gradle/3.0.0/gradle-3.0.0.pom
    file:/opt/android-studio-preview/gradle/m2repository/com/android/tools/build/gradle/3.0.0/gradle-3.0.0.jar
    https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.0/gradle-3.0.0.pom
    https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.0/gradle-3.0.0.jar
Required by:
    project :

您需要做的主要事情是:

将项目级别 build.gradle 文件更改为:

buildscript {
    repositories {
        ...
        // You need to add the following repository to download the
        // new plugin.
        maven {
          url 'https://maven.google.com'
        }
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0-alpha3'
    }
}

将 gradle-wrapper.properties 的 distributionUrl 更改为当前可用的最新版本 Gradle。

distributionUrl=https://services.gradle.org/distributions/gradle-4.0-rc-1-all.zip

完成此步骤后,您的项目仍无法编译,您需要按照有关如何将应用程序 build.gradle 转换为新插件

的所有说明进行操作 here

根据更新更改 build.gradle (project_name) 的一行 (classpath):-

dependencies {
    classpath 'com.android.tools.build:gradle:3.0.0-alpha3'

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