This is a Kotlin Multiplatform project targeting Android, iOS.
-
/androidApp
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.
For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app,
iosMain
would be the right folder for such calls.
-
/iosApp
contains iOS applications. Even if you’re sharing your UI with Compose Multiplatform, you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project. -
/shared
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.
Learn more about Kotlin Multiplatform…
For information on commit message guidelines, refer to Git conventional messages
Add your API key in the local.properties
file:
API_KEY=api_key
- Kotlin Multiplatform - Enables cross-platform development while maintaining a single codebase.
- Ktor Client - An asynchronous, multiplatform HTTP client for making requests and handling responses.
- kotlinx.serialization - Reflectionless, multiplatform serialization for Kotlin.
- Koin - A lightweight dependency injection framework for Kotlin and Kotlin Multiplatform.
- Kotlin Coroutines - A framework for writing asynchronous, concurrent code in Kotlin.
- StateFlow - A state-holder observable flow that emits updates to its collectors.
- Coil - An image loading library for Jetpack Compose powered by Kotlin Coroutines.
- SDWebImageSwiftUI - A SwiftUI image loading framework for iOS that supports caching and remote image loading.
- SKIE - A tool that improves Swift API interoperability with Kotlin Multiplatform.
- SQLDelight - A Kotlin library that generates type-safe APIs from SQL statements.
- moko-resources - Provides a way to access resources across multiple platforms, supporting system localization.
- BuildKonfig - A configuration management tool for Kotlin Multiplatform projects.
- Napier - A Kotlin Multiplatform logging library.