{"id":27695094,"url":"https://github.com/outadoc/just-chatting","last_synced_at":"2026-04-12T12:08:53.555Z","repository":{"id":63379886,"uuid":"499103719","full_name":"outadoc/just-chatting","owner":"outadoc","description":"An app focused on a great Twitch chat experience.","archived":false,"fork":false,"pushed_at":"2026-01-21T21:06:52.000Z","size":23636,"stargazers_count":15,"open_issues_count":5,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-22T05:12:36.819Z","etag":null,"topics":["android","compose-multiplatform","ios","kotlin","kotlin-multiplatform","twitch"],"latest_commit_sha":null,"homepage":"https://just-chatting.app/","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/outadoc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-06-02T11:14:46.000Z","updated_at":"2026-01-21T21:06:55.000Z","dependencies_parsed_at":"2023-02-14T03:03:26.733Z","dependency_job_id":"cbbf9337-f3bf-4969-9f74-f278a42acb58","html_url":"https://github.com/outadoc/just-chatting","commit_stats":null,"previous_names":[],"tags_count":624,"template":false,"template_full_name":null,"purl":"pkg:github/outadoc/just-chatting","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outadoc%2Fjust-chatting","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outadoc%2Fjust-chatting/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outadoc%2Fjust-chatting/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outadoc%2Fjust-chatting/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/outadoc","download_url":"https://codeload.github.com/outadoc/just-chatting/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outadoc%2Fjust-chatting/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28765573,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T02:25:41.078Z","status":"ssl_error","status_checked_at":"2026-01-26T02:24:28.809Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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","compose-multiplatform","ios","kotlin","kotlin-multiplatform","twitch"],"created_at":"2025-04-25T14:15:41.896Z","updated_at":"2026-04-12T12:08:53.537Z","avatar_url":"https://github.com/outadoc.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Just Chatting\n\nAn app focused on a great Twitch chat experience.\n\n- iOS and Android support.\n- Multi-chat. Open multiple chat bubbles, and switch between them (only on Android.)\n- Tablet- and foldable-optimized interface.\n- Custom emotes. If the default emotes aren't enough for you, we support third-party emote sets!\n- Slide to reply to any message, and see the context of the conversation.\n- See your favorite channels' schedule -- past, present, and future, in a unified timeline.\n\n\u003ctable\u003e\n\u003ctr\u003e\n\u003ctd\u003e\n\nhttps://github.com/user-attachments/assets/0f107cee-6294-4fbf-aa15-5466b57a548f\n\n\u003c/td\u003e\n\u003ctd\u003e\n\n![](./assets/screenshots/ios/ipad-static.png)\n\n\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/table\u003e\n\n## Project setup\n\n### Android\n\n1. Install [Android Studio](https://developer.android.com/studio/install);\n2. Open the project in the IDE.\n\n### iOS\n\n1. Install Xcode 16;\n2. Install [Tuist](https://docs.tuist.io/guides/quick-start/install-tuist);\n3. Move to the `app-ios` directory, and run `tuist generate` to generate and open the Xcode project.\n\n## Build the project locally\n```bash\n# Android\n./gradlew :app-android:assembleDebug       # Build debug APK\n./gradlew :app-android:installDebug        # Install on connected device\n\n# Desktop (JVM)\n./gradlew :app-desktop:run                 # Run desktop app\n\n# iOS (requires macOS + Xcode + Tuist)\ncd app-ios \u0026\u0026 tuist generate               # Generate Xcode project, then build in Xcode\n```\n\n## ABI\n\nShared modules contain ABI files to precisely control what's exposed publicly to their consumers.\nThey can be found in the modules' `abi/` directory.\n\n```bash\n./gradlew :shared:updateKotlinAbi        # Generate ABI files\n./gradlew :shared:checkKotlinAbi         # Check ABI compatibility\ǹ```\n\n## Testing\n\n```bash\n./gradlew :shared:testDebugUnitTest         # Run shared module unit tests (Android)\n./gradlew :konsist-checks:test              # Run architecture validation tests\n./gradlew :shared:verifySqlDelightMigration # Validate SQLDelight migrations\n```\n\nUnit tests are located in `shared/src/androidUnitTest/kotlin/`.\n\n## Code Formatting\n\nUse **Spotless** with ktlint:\n\n```bash\n./gradlew spotlessCheck    # Check formatting\n./gradlew spotlessApply    # Auto-format\n```\n\nAlways run `spotlessApply` before committing. CI enforces formatting on PRs.\n\n## Architecture\n\nThis project is a Kotlin Multiplatform app targeting Android, iOS, and JVM desktop. \nThe common business logic is included in the `shared` module, and common UI code in `shared-ui`.\n\nThen, by platform:\n\n- `app-android` contains the Android-specific code;\n- `app-desktop` contains the JVM desktop-specific code;\n- `app-ios` contains the iOS-specific code.\n\nPlatform-specific code is kept to an absolute minimum.\n\n### Layers (Clean Architecture, enforced by Konsist)\n\nCode is organized by feature under `fr.outadoc.justchatting.feature.*`, with each feature split into:\n\n- **domain** — Business logic, interfaces, use cases. No dependencies on other layers.\n- **presentation** — ViewModels, UI state. Depends only on domain.\n- **data** — Repositories, API clients, database. Depends only on domain.\n\n### Source Sets (shared module)\n\n- `commonMain` — Cross-platform code (vast majority of logic and UI)\n- `androidMain`, `iosMain`, `desktopMain` — Platform-specific implementations\n- `skiaMain` — Shared between iOS and Desktop (Skia renderer)\n- `appleMain` — Shared Apple platform code\n\n## Main dependencies\n\n- **Compose Multiplatform** — Shared UI across all platforms\n- **Koin** — Dependency injection. DI modules in `fr.outadoc.justchatting.di`\n- **SQLDelight** — Database. Schema files in `shared/src/commonMain/sqldelight/`\n- **Ktor** — HTTP client and WebSocket connections\n- **kotlinx-serialization** — JSON serialization\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foutadoc%2Fjust-chatting","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foutadoc%2Fjust-chatting","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foutadoc%2Fjust-chatting/lists"}