<@U3JBZ910W>, you have three options: 1) Very simp...
# gradle
d
@kefir, you have three options: 1) Very simple: use
”debugCompile"("your:awesome:dependency")
2) Simple: use
add("debugCompile", "your:awesome:dependency")
3) Beautiful: create new extension function
Copy code
fun DependencyHandler.debugCompile(dependencyNotation: Any) = add("debugCompile", dependencyNotation)
and use it
K 8
2️⃣ 1