I upgraded to Kotlin 1.9.20 What are the new keywo...
# multiplatform
d
I upgraded to Kotlin 1.9.20 What are the new keywords for
androidUnitTest
,
desktopMain
and
desktopTest
? They don't seem to work
b
I guess when you define a custom name for your target, you have to use
val desktopMain by getting {
.
d
ok, I see. how about Android test?
d
Same for
androidUnitTest
, do the
val androidUnitTest by getting
. It wasn’t added because of some additional compatibility considerations connected with Android integration. We’re considering adding static accessor for Android test source sets, but unlikely to do it in 1.9.2X release cycle
👍 2