这是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代码中有一些东西需要这个,显然。
有什么想法吗?我花了太多时间试图追踪它。
答案 0 :(得分:1)
在compile "com.android.support:support-core-utils:26.1.0"
级app
文件中添加build.gradle
行,而不是project
级别build.gradle
文件。