- Setup of Android Development without andorid studio use Kotlin Multiplatform
- to install android sdk in windows you can use chocolatey ->
choco install android-sdk -y - Jetpack Visual Hierarchy Overview
βββ Architecture
β βββ Lifecycle (Manages activity/fragment lifecycle)
β βββ LiveData (Observable data holder)
β βββ ViewModel (Holds UI-related data)
β βββ Room (SQLite object mapping)
β βββ WorkManager (Background work)
β
βββ UI
β βββ Jetpack Compose (Declarative UI)
β β βββ UI Toolkit (Layout, Material components)
β β βββ Animation (Motion and transitions)
β β βββ Tooling (Preview, Debugging)
β βββ AppCompat (Backward compatibility)
β βββ Fragment (UI modularity)
β
βββ Behavior
β βββ Notifications (Alerts and messaging)
β βββ Permissions (Runtime permissions)
β βββ Sharing (Content sharing between apps)
β
βββ Foundation
βββ Android KTX (Kotlin extensions for Android APIs)
βββ App Startup (Initialize components quickly)
βββ Test (JUnit extensions, Espresso, etc.)gradle init, generate gradle projectgradle project, show subproject and project structuregradle :labor-sever:dependencies, list specific project dependencies:colon is analogous to/slash
- 4 April 2025, create documentation about setup android development wihtout android studio in kotlin multiplatform
- 19 Agustus 2025, create poc kotlin test, sideeffect, lifecycle, kotlin flow test, flow appstate.
This is a Kotlin Multiplatform project targeting Android, iOS, Web, Desktop.
-
/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.
Learn more about Kotlin Multiplatform, Compose Multiplatform, Kotlin/Wasmβ¦
We would appreciate your feedback on Compose/Web and Kotlin/Wasm in the public Slack channel #compose-web. If you face any issues, please report them on YouTrack.
You can open the web application by running the :composeApp:wasmJsBrowserDevelopmentRun Gradle task.
- Kotlin Multiplatform (android and ios) docs
- kotlin library search
- compose material component
- compose material 3 theme
- Stetho -> sophisticated debug bridge for Android applications
- Awesome Kotlin
- β ORM: Room
- β DI: Koin
- vico chart library
- β State Management: Decompose / ViewModel
- β Networking: Ktor or Retrofit
- android architecture explained