This is a Kotlin Multiplatform project targeting Android, Desktop.
-
/app
is for code that will be shared across your Compose Multiplatform applications. It contains several subfolders:commonMain
is for code that’s common for all targets.- Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name.
-
/common
is for the code that will be shared between all targets in the project. The most important subfolder iscommonMain
. If preferred, you can add code to the platform-specific folders here too.
/build-logic
is for the Gradle plugins and project setup.base
is for the common configurations and extensions.convention
is for the convention plugins.
Learn more about Kotlin Multiplatform…