I'm trying to make a kotlin multiplatform library,...
# library-development
h
I'm trying to make a kotlin multiplatform library, which only uses coroutines as a dependency and other than that its pure kotlin code. So naturally I want to target as many targets as possible. Is there some exhaustive list of all possible targets? Or am I thinking wrongly about this? In theory as its pure kotlin + coroutines I dont want to limit the possible targets, but let kotlin and coroutines be leading in what I support. I currently have the following list by looking at the gradle dsl files
KotlinTargetContainerWithPresetFunctions.kt
,
KotlinTargetContainerWithJsPresetFunctions.kt
and
KotlinTargetContainerWithWasmPresetFunctions.kt
.
m
There is this for native but I'm not aware of another place other than the source code itself like you used
You might also be interested in https://youtrack.jetbrains.com/issue/KT-52666
h
Thanks! Interesting read as well.