hey all, i've a library with common code (one anno...
# multiplatform
d
hey all, i've a library with common code (one annotation class and one fun depending on kotlinx-coroutines, no platform-specific code); i'd like to support android, jvm, js, ios targets. since android is a jvm-like target is it needed/ok/redundant to declare explicitly
android()
in
kotlin
block? this is like: https://youtrack.jetbrains.com/issue/KT-52666
r
Nope, as long as you don’t need access to Android APIs, you can leave out the
android
target.