ribesg
05/07/2021, 2:44 PMThe Kotlin source set androidAndroidTestRelease was configured but not added to any Kotlin compilation. You can add a source set to a target's compilation by connecting it with the compilation's default source set using 'dependsOn'.
See <https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html#connecting-source-sets>
Jemo
05/30/2021, 10:47 AMval androidAndroidTestRelease by getting
val androidTest by getting {
dependsOn(androidAndroidTestRelease)
...
}
Nikolay Kasyanov
06/03/2021, 9:58 AM