This is a Kotlin Multiplatform project targeting Android, iOS, Web, Desktop, Server.
- Android - OK
- iOS - OK
- Web - in progress
- Desktop - in progress
- Server - in progress
Important
You need to add the NEWS_API_KEY in your local.properties for Android.
For iOS, you can update the api key in the data module, iosMain/source.impl/NewsRemoteDataSource.ios.kt.
To get your own api key, go to --> https://newsapi.org/
- Kotlin
- Kotlin Coroutine
- Kotlinx Serialization
- Ktor client library
- Compose Multiplatform
- Koin
- SQL delight
- Coil
Warning
For more details, you can check the official document:
https://thesetox.github.io/KMP-Playground-Document/introduction.html (Work in Progress)
-
/composeAppis for code that will be shared across your Compose Multiplatform applications. It contains several subfolders:commonMainis 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,
iosMainwould be the right folder for such calls.
-
/iosAppcontains 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. -
/serveris for the Ktor server application. -
/sharedis 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. This is being used as the main/sharedfolder. -
/domainis a shared module where it is responsible on creating the business logic. You usually don't need to add code to the platform-specific but you can add additional business logic depending on the target -
/datais a shared module where it is responsible for fetching the data. You can fetch platform-specific data.
Note
Note: Compose/Web is Experimental and may be changed at any time. Use it only for evaluation purposes.
Special thanks to https://github.com/petros-efthymiou.
The project is an insipration from https://github.com/petros-efthymiou/DailyPulse



