Posts tagged kmp
-
Kotlin Multiplatform in production
What it actually takes to ship Kotlin Multiplatform across iOS and Android in a real product.
-
Fakt: Automating the Fake-over-mock pattern
Kotlin testing has a problem that gets worse the more successful your project becomes.
-
The Hidden Cost of Default Hierarchy Template in Kotlin Multiplatform
The Default Hierarchy Template in KMP projects is a great way to reduce boilerplate code and start working quickly. However, it came with an unexpected…
-
KMP-102 - Modularization in KMP
In the last article we dug into the quirks of code exported to Objective-C headers, along with the best practices for what to export…
-
KMP-102 - Optimizing Kotlin for Obj-C/Swift
In the last post, we learned how to use Kotlin code in Swift, some techniques to improve the code exported to Swift, and how annotations control its…
-
KMP-102 - Using Kotlin Code in Swift
In the last post, we learned how to create an XCFramework from Kotlin code and explored some characteristics of the generated build types.
-
KMP-102 - Characteristics of the XCFramework in KMP
In the previous post, we learned how Kotlin/Native exports a collection of .frameworks in the XCFramework format.
-
KMP-102 - XCFramework for KMP Devs
Welcome to the KMP-102 series. We dig deeper into Kotlin Multiplatform concepts, learning more about how to integrate our Kotlin code into iOS and beyond.
-
Kotlin Koans BR: Import alias
When importing a class or function, you can give it a different name by adding as NewName after the import directive. This can be useful when…
-
Kotlin Koans BR: Extension functions and properties
Implement the extension functions Int.r() and Pair.r() so they convert an Int and a Pair into a RationalNumber.
-
KMP 101: Exploring internal and external dependencies in KMP (end of the series)
In previous articles, we established a foundation in Kotlin Multiplatform (KMP) and how it compiles to multiple platforms.
-
KMP 101: How to Share Code in KMP - Connecting Platforms with expect and actual
Unpacking the expect and actual keywords in Kotlin Multiplatform and the different ways they let you share code across platforms.
-
KMP 101: Learning how Gradle is used in Kotlin Multiplatform
In the last article, we created a project using the KMP Wizard and, with little effort, ran our app on Android, iOS, and Desktop.
-
KMP 101: Creating and running your first multiplatform project in Fleet
Over the last few articles we covered key KMP concepts, from the multiplatform paradigm to setting up the environment.
-
KMP 101: Understanding and Setting Up the Dev Environment in Kotlin Multiplatform
Software development is a complex process that demands not only skill and creativity, but also a well-configured development environment.
-
KMP 101: Mastering the Principles of Source Sets
In the last article, we learned about the Kotlin compiler frontend, IR, and backend. Now we dig into source sets — the key concept for writing KMP code.
-
KMP 101: Understanding How Kotlin Compiles to Multiple Platforms
In the last post (🔗 KMP 101: An Introduction to the multiplatform paradigm), we explored the multiplatform paradigm and how KMP stands out in the ecosystem.
-
KMP 101: An introduction to the multiplatform paradigm
We use a wide range of apps every day on phones, watches, TVs, and computers, all part of a broad digital ecosystem.