You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when there is no ksp.useKSP2=true, both three gradle tasks output [K2, K1]
when add ksp.useKSP2=true, only ./gradlew :workload:kspKotlinJvm output [K2, K1], but ./gradlew :workload:kspKotlinIosX6 ./gradlew :workload:kspCommonMainKotlinMetadata returns empty. We also tried without gradle but just command lines, and get the same result.
Any way to get declarations from other module (like klib1) for all gradle tasks? Or some settings we can add in build.gradle? Thanks a lot.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
kotlin 2.1.10
ksp 2.1.10-1.0.30
we have a simple kmp
workload
module depends on another kmp modulelib1
, inlib1
we have akkkk.kt
which is quite simple like thisnow we try to apply a
test-processor
toworkload
module, intest-processor
we havewe log
kkkk
content and expect to see[K2, K1]
, and runwith both enable and disable ksp2
when there is no
ksp.useKSP2=true
, both three gradle tasks output[K2, K1]
when add
ksp.useKSP2=true
, only./gradlew :workload:kspKotlinJvm
output[K2, K1]
, but./gradlew :workload:kspKotlinIosX6 ./gradlew :workload:kspCommonMainKotlinMetadata
returns empty. We also tried without gradle but just command lines, and get the same result.Any way to get declarations from other module (like
klib1
) for all gradle tasks? Or some settings we can add in build.gradle? Thanks a lot.The text was updated successfully, but these errors were encountered: