Simdock is a macOS-only open-source tool written in Rust. It provides both a desktop app and a CLI for managing iOS Simulator and Android Emulator environment checks, dependency setup, and launch workflows.
The desktop app is built with iced. The CLI is designed for automation, scripting, and contributor debugging.
- Check whether a Mac is ready to run iOS Simulator and Android Emulator.
- Inspect Xcode, iOS runtimes, Android SDK tools, Java, emulator, ADB, and system images.
- Switch between iOS and Android tabs in the desktop app.
- Run one-click setup workflows with current step, progress, and live logs.
- Switch between Chinese and English.
- Switch between light, dark, and system themes.
- Use CLI commands for automation and future CI integration.
Screenshots are not committed yet. Store release-ready PNG screenshots under assets/screenshots/, then reference them from this section with relative Markdown image paths.
Requirements:
- macOS.
- Rust toolchain.
- Xcode is still required for iOS Simulator. Xcode is distributed by Apple, and Simdock does not bundle or bypass Apple's distribution and license mechanisms.
Run the desktop app:
./scripts/run-desktop.shRun the CLI environment check:
./scripts/run-cli.sh doctor
./scripts/run-cli.sh --json doctorCheck the workspace:
./scripts/check.shBuild optimized release binaries and inspect size:
./scripts/build-release.sh
./scripts/size-report.shBuild a macOS .app bundle and .dmg with Simdock icons:
./scripts/package-macos.shBuild a macOS .pkg installer:
./scripts/package-macos-pkg.shapps/
simdock-cli/ Command-line application.
simdock-desktop/ iced desktop application.
crates/
simdock-core/ Domain models, providers, and simulator workflows.
simdock-infra/ App paths, command execution, and infrastructure.
docs/
architecture.md Architecture and module boundaries.
development.md Contributor development guide.
packaging.md Build, release, and size optimization notes.
scripts/
check.sh Format and compile checks.
run-cli.sh CLI development runner.
run-desktop.sh Desktop development runner.
build-release.sh Release build helper.
package-macos.sh macOS app bundle and DMG packaging helper.
package-macos-pkg.sh
macOS PKG installer packaging helper.
size-report.sh Release binary size helper.
Simdock is still early-stage software. The current focus is improving iOS/Android environment checks, managed iOS simulator setup, managed Android SDK/AVD setup, emulator launch workflows, and the desktop experience.
MIT. See LICENSE.