https://kotlinlang.org logo
#kotless
Title
# kotless
a

asarazan

11/28/2020, 8:40 PM
I’m not sure the right place for this question/request, but I would love to see an example project that includes kotless modules + KMM modules. Would be really nice to be able to have 100% of our codebases in a single project.
g

gildor

11/29/2020, 7:57 AM
Looks that it should be pretty straightforward thing to do, just having separate modules, kotless just should be used for JVM modules only
t

TanVD

11/29/2020, 10:28 AM
Yep, for now this is the way)
a

asarazan

11/29/2020, 5:52 PM
I suspect a lot of the complexity falls on the KMM side, as I’ve struggled to stitch the gradle files together successfully up until now
and the multiplatform module stuff is pretty sprawling
I’ve upgraded kotlin deps to 1.4.10 — maybe that’s the culprit?
Otherwise I probably just did a really bad job at configuring the plugins in gradle
t

TanVD

11/29/2020, 7:25 PM
Yep, right now 1.4.10 is not available. Use 1.3.72 😞
a

asarazan

11/29/2020, 7:41 PM
dohhhh, I suspect that precludes KMM then, given how tightly bound those two releases were. Willing to throw out a rough ETA on upgrade?
t

TanVD

11/29/2020, 7:49 PM
I believe it is a matter of ~month, we have to rework internal architecture to support 1.4.*
🙌 1
The problem is that we use bundled compiler to introspect code and Gradle has 1.3.72 Kotlin that is not upgradable, we have to rework the whole introspection engine into compiler plugin 🙂
g

gildor

11/29/2020, 11:48 PM
Gradle 6.8 (rc1 is available already) updated internal Kotlin (though, only Kotlin, target language feature is still 1.3)
a

asarazan

11/30/2020, 1:49 AM
Thanks for the info! Looking forward to merging my projects in the near future 🙂
2 Views