Skip to main content

2 posts tagged with "Kotlin Native"

The 'Kotlin Native' tag on our blog features a wide range of tutorials and articles that provide in-depth knowledge about Kotlin Native, a technology that compiles Kotlin directly to machine code.

View All Tags

Exploring Kotlin's Multiplatform Projects with Kotlin/Native

· 7 min read
Engineering Team

In this tutorial, we will explore Kotlin's multiplatform projects and how to use Kotlin/Native to create cross-platform applications. Kotlin multiplatform projects allow developers to write shared code that can be used across different platforms, such as iOS, Android, and desktop. We will cover the advantages of Kotlin multiplatform projects, setting up Kotlin/Native, writing shared code, building and running the project, interoperability between Kotlin and native code, and testing the shared code.

Exploring Kotlin's Expect and Actual Declarations for Native Libraries

· 6 min read
Engineering Team

In this tutorial, we will explore Kotlin's Expect and Actual declarations for native libraries. Expect and Actual declarations allow us to write platform-specific code in a shared module, making it possible to write multiplatform applications with Kotlin. We will learn how to set up Kotlin Native libraries, define Expect declarations, implement Actual declarations, and test and debug Kotlin Native libraries.