Derek Ellis
03/05/2021, 1:31 AMcheck
is run compileDebugAndroidTestKotlinAndroid
fails because it can't find the actual
declaration for a JVM module. It worked before, and the actual declarations are there.. I can run testDebugUnitTest
successfully too. Did something change or am I missing something obvious?gammax
03/05/2021, 10:31 AMI upgraded some dependenciesWhich dependencies have you updated?
Derek Ellis
03/05/2021, 2:00 PMgammax
03/05/2021, 2:42 PMrusshwolf
03/05/2021, 4:23 PMactual
declarations from androidTest
to androidAndroidTest
and it will build.Derek Ellis
03/05/2021, 5:42 PMandroidTest
directory as the sourceset for androidTest
to avoid having to copy/symlink the files and it seems to be working as well. Thank you! (and I'm going to bump detekt as well for good measure)Qracle
02/25/2022, 11:19 PMandroidTest
directory as the source set for androidAndroidTest
?kotlin.srcDir
Derek Ellis
02/26/2022, 1:48 PMjava.srcDir
but I imagine kotlin.srcDir
would work too
https://github.com/cuhacking/mmapp/blob/main/mmapp/build.gradle.kts#L73-L79