https://kotlinlang.org logo
Title
g

gustavo.ross

05/02/2019, 12:57 PM
Anyone here have built an iOS App using Kotlin Native, and can tell how was this experience?
d

David Stolarsky

05/02/2019, 1:15 PM
i'm building an iOS app and an Android app and I'm attempting to write as much business logic as possible in shared Kotlin
(they are the same app)
no major problems so far.... but i'm still in the middle of it.
d

Dennis L

05/02/2019, 1:17 PM
there's #multiplatform channel for MPP talk specifically
s

Simon Schubert

05/02/2019, 1:38 PM
I'm also working on an mpp project(https://github.com/SimonSchubert/Newsout), in the beginning I had problems setting up the gradle scripts. but once it's set up i had no big problems anymore
sometimes it's a bit annoying to rebuild the whole framework after changing a single line of code but that made me to code more carefully
d

Dennis L

05/02/2019, 1:42 PM
Oh I've looked at that project before for trying to solve some MPP problems, do you know of any good resources to read up specifically for kotlin mpp testing, because in your commonTest module there appears to be unit tests for the database but the DB drivers require context to be tested at least on android and I'm still just a bit lost on how to start the different kinds of testing you can do for an MPP project
g

gildor

05/05/2019, 11:48 AM
There is also #ios