https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
b

bod

07/08/2020, 9:10 AM
Hello, World! I have a very simple and small Kotlin/JVM project that uses a SQLite database, currently via JDBC. I'd like to "port" it to full Native (targeting MacOS only for now would be enough). I was wondering if anybody had any general advices and/or pointers about where to start 🙂 Thanks!
b

Big Chungus

07/08/2020, 9:40 AM
Start by replacing JVM dependencies with either KMPP or native ones, then change the platform to macOS (which will turn most of your project red) and then just gradually clear up red stuff
b

bod

07/08/2020, 9:45 AM
sqldelight has native support! Perfect! I wasn't aware. 🙏
thanks a lot 🙂
2 Views