Sam
05/16/2020, 11:46 AMA
there which doesn't target any specific end-platform itself, but is acting as a "common" library which can be added into another multiplatform module B
. Module A
would make use of another multiplatform libs (stdlib, coroutines and sqldelight). It's the module B
that will target Android
and iOS
. It seems it can't be done using kotlin-multiplatform
plugin as a tooling.
1. Am I right?
2. Is there another tooling/plugin available that will allow me to configure such a "common" module?Ugi
05/16/2020, 1:17 PMlinux
jvm
iosX64
, etc if you want to use them in your module B.
Konstantin Petrukhnov
05/16/2020, 1:54 PMrusshwolf
05/16/2020, 3:48 PMA
that you need in B
and it will workSam
05/16/2020, 4:49 PMkotlin {
android()
}
api(project(":A"))
. and in the and B is plugged into android app. In the android app classes from A are available, in B not 🤔russhwolf
05/16/2020, 5:59 PMSam
05/16/2020, 6:46 PMrusshwolf
05/16/2020, 6:48 PMSam
05/16/2020, 6:50 PM