David Rubio
06/11/2025, 10:54 AMkotlin.fuzz
work with KMP? Everytime I sync with the IDE I get this warning:
'fuzz' and 'regression' task was not able to inherit the 'classpath' and 'testClassesDirs' properties, as it found conflicting configurations
Please, specify them manually in your gradle config using the following syntax:
tasks.withType<FuzzTask>().configureEach {
classpath = TODO()
testClassesDirs = TODO()
}
tasks.withType<RegressionTask>().configureEach {
classpath = TODO()
testClassesDirs = TODO()
}
tapchicoma
06/11/2025, 11:51 AM