执行代码时出现以下错误。
错误:找不到参数的方法debugdcompile() 关于类型对象的[com.squareup.leakcanary:leakcanary-android:1.5] org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler。
答案 0 :(得分:1)
你写了debugdcompile
,这是错误的。它应该是debugCompile
。 C必须大写,d
甚至不应该在那里
答案 1 :(得分:0)
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5'
在{strong> build.gradle 中添加mavenCentral()
和jcenter
以及 allprojects 部分。
这可能有助于解决问题。