How to add this dependency to KMP? `debugImplement...
# multiplatform
m
How to add this dependency to KMP?
debugImplementation ("org.slf4j:slf4j-simple:2.0.7")
I tried this in sourceSets:
Copy code
val androidDebug by getting {
            dependencies {
                implementation ("org.slf4j:slf4j-simple:2.0.7")
       }
}
But it says that Kotlin sourceSet with name androidDebug not found
i
Copy code
val androidMain by getting {
    dependencies {
        api(libs.slf4j)
    }
}
replace libs.slf4j with yours.
124 Views