magnumrocha
08/24/2021, 8:47 PM> Task :shared:compileDebugAndroidTestKotlinAndroid FAILED
...has no actual declaration in module <shared_debug> for JVM
I have no jvm target set on the kotlin plugin, only android and ios targets, by the name of this task compileDebugAndroidTestKotlinAndroid what is it trying to do?jdoneill
08/25/2021, 3:02 AMcompileOptions? Try JavaVersion.VERSION_1_8 if not alreadymagnumrocha
08/25/2021, 7:41 AMcompileOptions :
android {
...
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}magnumrocha
08/25/2021, 7:42 AMkotlin {} plugin setup…Qracle
02/25/2022, 10:43 PMmagnumrocha
03/01/2022, 8:53 PM