- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚将 Android Studio 更新到 3.0 canary 1。现在我正在 Android Studio 3.0 canary 1 上处理我现有的项目。默认情况下,我的项目中设置了 gradle:3.0.0-alpha1:gradle_file。所以我将 gradle 版本更改为 2.2.3,现在我收到此错误:
Error:Failed to complete Gradle execution.
Cause: The version of Gradle you are using (3.3) does not support the forTasks() method on BuildActionExecuter. Support for this is available in Gradle 3.5 and all later versions.
我在此处附加了我的 gradle 文件
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
最佳答案
我刚刚也遇到了同样的问题。通过更改“gradle-wrapper.properties”中的 Gradle distributionUrl 修复了该问题。
这是我的配置:
#Wed Mar 22 16:13:58 BRT 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
了解更多详情
帮助迁移的官方视频 https://www.youtube.com/watch?v=oBsbI8ICYKg
另请参阅下面来自 @TmTron 的评论
关于Gradle 版本 3.3 不支持 BuildActionExecuter 上的 forTask() 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44206433/
我刚刚将 Android Studio 更新到 3.0 canary 1。现在我正在 Android Studio 3.0 canary 1 上处理我现有的项目。默认情况下,我的项目中设置了 grad
我是一名优秀的程序员,十分优秀!