Android Studio - 编译时构建失败,无法找到dsl.dependencies.DefaultDependencyHandler

时间:2017-10-04 07:40:04

标签: android android-studio android-gradle android-studio-3.0

这是build.gradle:

C:\Users\billb\StudioProjects\ShoppingList03>type build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
    dependencies {
        classpath "/com.android.tools.build.gradle:3.3/"
        compile "com.android.support:support-core-utils:26.1.0"
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

编译时出错:找不到DefaultDependencyHandler。 我重新加载了Android SDK平台工具和SDK工具,26.0.1

这个DefaultDependencyHandler在哪里?为什么需要?
我的android java代码中有一些东西需要这个,显然。

有什么想法吗?我花了太多时间试图追踪它。

1 个答案:

答案 0 :(得分:1)

compile "com.android.support:support-core-utils:26.1.0"app文件中添加build.gradle行,而不是project级别build.gradle文件。