feat(mobile): add Kotlin Multiplatform mobile client under apps/mobile - #777
Open
kareemessam09 wants to merge 2 commits into
Open
feat(mobile): add Kotlin Multiplatform mobile client under apps/mobile#777kareemessam09 wants to merge 2 commits into
kareemessam09 wants to merge 2 commits into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds the OpenShip mobile client under
apps/mobile, implemented with Kotlin Multiplatform and Compose Multiplatform for Android.This integrates the mobile application directly into the monorepo as
@repo/mobile, adhering to the client-side architecture discussed in the repository discussions.Architecture & Design Alignment
Client-Side Single Source of Truth:
/api/projects,/api/deployments,/api/system/monitor/stream, and/api/mcp).Monorepo Integration (
@repo/mobile):apps/mobile."build:mobile": "bun run --cwd apps/mobile build"..gitignorerules for Android and Gradle build artifacts.Security & Credentials:
AndroidTokenStorage.kt).network_security_config.xml.Brand & Design Parity:
theme.css) supporting Dark, Dim, and Light modes.Core Features
/api/health/env), authentication mode resolution (local,saas,none), and token validation./api/deployments/:id/stream) with Base64 decoding, ANSI color parsing, build stage indicators, and auto-scrolling./api/system/monitor/stream) with gauges and sparkline charts for CPU, RAM, disk, and load averages./api/mcpwith confirmation dialogs and automatic fallback for read-only tokens.Verification
All automated test suites pass locally:
cd apps/mobile ./gradlew allTests ./gradlew assembleReleasePlanned Follow-up