Jeff Lockhart
07/09/2022, 1:19 AMKey androidCommonTest is missing in the map.There's no stack trace or further error info, unfortunately. In fact, the top-level build log completes with
BUILD SUCCESSFUL
. So it's unclear how to troubleshoot this.
This is the build.gradle.kts change I made:
kotlin {
...
sourceSets {
...
val commonTest by getting {
...
}
val androidCommonTest by creating {
dependsOn(commonTest)
}
val androidTest by getting {
dependsOn(androidCommonTest)
...
}
val androidAndroidTest by getting {
dependsOn(androidCommonTest)
...
}
}
}
Jeff Lockhart
07/09/2022, 8:00 AMRadoslaw Juszczyk
07/09/2022, 9:04 AMJeff Lockhart
07/09/2022, 9:19 AM