最佳答案
我刚把我的 Android Studio 升级到了3.0金丝雀1。 现在我正致力于我现有的 Android Studio 3.0金丝雀1项目。 默认情况下,级别: 3.0.0-alpha1在我的项目中设置: gradle _ file。 所以我把我的等级版本改成了2.2.3,现在我得到了这个错误:
错误: 未能完成 Gradle 的执行。
原因: 您正在使用的 Gradle (3.3)版本不支持 BuildActionExecter 上的 forTasks ()方法 可在 Gradle 3.5和所有更高版本中使用。
我把我的档案附在这里
// 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
}