无法更新Android Gradle插件

时间:2019-06-17 04:30:22

标签: android-studio

我正在运行Android Studio 3.4.1,并且正在尝试构建bundle

Build -> Build Bundle(s) / APK(s) -> Build Bundle(s)

这就是我所看到的:

enter image description here

当我单击Update时,对话框关闭,并且绝对没有任何反应。我已经尝试了几次。

我也有这个:

enter image description here

我刚接触Android Studio,但是我的简单应用已经完成,可以部署到Google Play商店。是否有其他替代方法来构建捆绑包?我想念什么吗?

1 个答案:

答案 0 :(得分:1)

首先,请确保您当前使用的插件中包含google()。

buildscript {
repositories {
    // Gradle 4.1 and higher include support for Google's Maven repo using
    // the google() method. And you need to include this repo to download
    // Android Gradle plugin 3.0.0 or higher.
    google()
    ...
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.4.1'
}
}

第二-更新distributionURL gradle-wrapper.properties中的值并进行同步

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

distributionUrl路径可以在以下路径中找到

enter image description here