Could I get a review on this script? I'm wondering...
# multiplatform
p
Could I get a review on this script? I'm wondering if I really need to setup all the coroutine dependencies explicitly. Also, what does the Android target do that the JVM target doesn't? https://github.com/pardom/oolong/blob/master/oolong/build.gradle.kts
r
Also, what does the Android target do that the JVM target doesn't?
It gives you access to Android-specific APIs. Same as using
kotlin-android
vs
kotlin
plugin in a single-platform project.
👍 1