Mario Andhika
08/14/2023, 3:52 AMdebugImplementation ("org.slf4j:slf4j-simple:2.0.7")
I tried this in sourceSets:
val androidDebug by getting {
dependencies {
implementation ("org.slf4j:slf4j-simple:2.0.7")
}
}
But it says that Kotlin sourceSet with name androidDebug not foundiXPert12
08/14/2023, 12:36 PMval androidMain by getting {
dependencies {
api(libs.slf4j)
}
}
replace libs.slf4j with yours.