{"id":25905537,"url":"https://github.com/artsiombulatkin/kotlinmultiplatformroomsample","last_synced_at":"2026-02-14T16:31:54.769Z","repository":{"id":278781728,"uuid":"936034053","full_name":"ArtsiomBulatkin/KotlinMultiplatformRoomSample","owner":"ArtsiomBulatkin","description":"This is a Kotlin Multiplatform (KMP) project demonstrating how to use Room Database across Android, iOS, and Desktop platforms.","archived":false,"fork":false,"pushed_at":"2025-03-01T22:38:43.000Z","size":1077,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-01T23:24:14.612Z","etag":null,"topics":["android","coroutines","desktop","flow","ios","jetpack-compose","kmm","kotlin","kotlin-multiplatform","room","room-database","sqlite"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ArtsiomBulatkin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-20T12:25:37.000Z","updated_at":"2025-03-01T22:38:00.000Z","dependencies_parsed_at":"2025-02-21T17:33:44.563Z","dependency_job_id":"f42cdd4c-6474-48d9-ad66-aaddb8170ccb","html_url":"https://github.com/ArtsiomBulatkin/KotlinMultiplatformRoomSample","commit_stats":null,"previous_names":["artsiombulatkin/kotlinmultiplatformroomsample"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtsiomBulatkin%2FKotlinMultiplatformRoomSample","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtsiomBulatkin%2FKotlinMultiplatformRoomSample/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtsiomBulatkin%2FKotlinMultiplatformRoomSample/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtsiomBulatkin%2FKotlinMultiplatformRoomSample/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArtsiomBulatkin","download_url":"https://codeload.github.com/ArtsiomBulatkin/KotlinMultiplatformRoomSample/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241610986,"owners_count":19990508,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","coroutines","desktop","flow","ios","jetpack-compose","kmm","kotlin","kotlin-multiplatform","room","room-database","sqlite"],"created_at":"2025-03-03T05:15:23.384Z","updated_at":"2026-02-14T16:31:54.728Z","avatar_url":"https://github.com/ArtsiomBulatkin.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kotlin Multiplatform Room Sample\n\n## 📌 Features\n\n- **Kotlin Multiplatform** support\n- **Room Database** for data persistence\n- **Koin Dependency Injection**\n- **Jetpack Compose UI for Android, iOS, and Desktop**\n- **Coroutines \u0026 Flow** for async operations\n\n## 🛠️ Tech Stack\n\n- **Kotlin Multiplatform (KMP)**\n- **Room Database** (KMP-supported)\n- **Jetpack Compose** (Android, Desktop UI)\n- **Koin** (Dependency Injection)\n- **Room Database** is used on **Android, iOS, and Desktop** with SQLite as the underlying storage.\n- **Kotlin Coroutines \u0026 Flow** (Reactive Data Handling)\n\n## 📦 Project Structure\n\n```\n├── androidMain/    # Android-specific implementation\n├── iosMain/        # iOS-specific implementation\n├── desktopMain/    # Desktop-specific implementation\n├── commonMain/     # Shared Kotlin Multiplatform Code\n│   ├── db/         # Room Database \u0026 DAO (Shared across platforms)\n│   ├── repository/ # Repository Layer\n│   ├── di/         # Dependency Injection (Koin)\n│   ├── App.kt      # Compose UI\n│   ├── AppViewModel.kt # ViewModel (State Management)\n```\n\n## 🚀 Getting Started\n\n### 1️⃣ Clone the repository\n\n```sh\ngit clone https://github.com/ArtsiomBulatkin/KotlinMultiplatformRoomSample.git\ncd KotlinMultiplatformRoomSample\n```\n\n### 2️⃣ Open in Android Studio\n\n- Open **Android Studio** (latest stable version with KMP support)\n- Select \"**Open an Existing Project**\"\n- Choose the cloned repository folder\n- Let Gradle sync the project\n\n### 3️⃣ Run on Different Platforms\n\n#### ✅ **Android**\n\n- Select `composeApp` configuration\n- Click **Run** ▶️ in Android Studio\n\n#### ✅ **iOS**\n\n- Open `iosApp` in **Xcode**\n- Run on **iOS Simulator**\n\n#### ✅ **Desktop**\n\n- Select `desktop` configuration in Android Studio\n- Click **Run** ▶️\n\n## 📸 Screenshots\n\nHere are some screenshots of the project running on different platforms:\n\n### Android\n\u003cimg src=\"screenshots/android.png\" style=\"width: 50%\" alt=\"Android Screenshot\"\u003e\n\n### iOS\n\u003cimg src=\"screenshots/ios.png\" style=\"width: 50%\" alt=\"iOS Screenshot\"\u003e\n\n### Desktop\n\u003cimg src=\"screenshots/desktop.png\" style=\"width: 50%\" alt=\"Desktop Screenshot\"\u003e\n\n## 🏷️ Suggested GitHub Tags\n\n- `Kotlin`\n- `Kotlin-Multiplatform`\n- `KMP`\n- `Room-Database`\n- `Android`\n- `iOS`\n- `Desktop`\n- `Jetpack-Compose`\n- `SQLite`\n- `Coroutines`\n- `Flow`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartsiombulatkin%2Fkotlinmultiplatformroomsample","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fartsiombulatkin%2Fkotlinmultiplatformroomsample","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartsiombulatkin%2Fkotlinmultiplatformroomsample/lists"}