<https://kotlinlang.slack.com/archives/C3PQML5NU/p...
# multiplatform
h
https://kotlinlang.slack.com/archives/C3PQML5NU/p1707213454341969 is there any way for gradle
7.5.1
? thanks 😞
j
In the root dependencies block (outside of
kotlin { ... }
block), you can try
Copy code
dependencies {
    "debugImplementation"(libs.chuckerLibrary)
}
check the
"
in
"debugImplementation"
h
ok let me try thanks
j
if that not work you can print all
configurations
and look for the relevant one, using the string approach in the top level dependencies
😘 1
h
nice idea, I will try the way that you recommend ^^
🙂 1