https://github.com/xtool-org/xtool
Cross-platform Xcode replacement. Build and deploy iOS apps with SwiftPM on Linux, Windows, macOS.
https://github.com/xtool-org/xtool
ios linux swift swift-package-manager windows xcode
Last synced: 21 days ago
JSON representation
Cross-platform Xcode replacement. Build and deploy iOS apps with SwiftPM on Linux, Windows, macOS.
- Host: GitHub
- URL: https://github.com/xtool-org/xtool
- Owner: xtool-org
- License: mit
- Created: 2024-11-17T08:18:44.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-06-04T09:37:49.000Z (27 days ago)
- Last Synced: 2025-06-07T23:25:47.845Z (24 days ago)
- Topics: ios, linux, swift, swift-package-manager, windows, xcode
- Language: Swift
- Homepage: https://xtool.sh
- Size: 10.3 MB
- Stars: 3,515
- Watchers: 13
- Forks: 74
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-starred - xtool-org/xtool - Cross-platform Xcode replacement. Build and deploy iOS apps with SwiftPM on Linux, Windows, macOS. (Swift)
README
# xtool
Cross-platform Xcode replacement. Build and deploy iOS apps with SwiftPM on Linux, Windows, and macOS.
## Overview
xtool is a cross-platform (Linux/WSL/macOS) tool that replicates Xcode functionality with open standards.
✅ Build a SwiftPM package into an iOS app
✅ Sign and install iOS apps
✅ Interact with Apple Developer Services programmatically
## Getting Started
1. Follow the guide to install `xtool`
- [Installation (Linux/Windows)](https://xtool.sh/documentation/xtooldocs/installation-linux)
- [Installation (macOS)](https://xtool.sh/documentation/xtooldocs/installation-macos)
2. Create and run your first xtool-powered app by following the [tutorial](https://xtool.sh/tutorials/xtooldocs/first-app)!## Examples
### Screenshot

### Command line interface
```bash
$ xtool --help
OVERVIEW: Cross-platform Xcode replacementUSAGE: xtool
OPTIONS:
-h, --help Show help information.CONFIGURATION SUBCOMMANDS:
setup Set up xtool for iOS development
auth Manage Apple Developer Services authentication
sdk Manage the Darwin Swift SDKDEVELOPMENT SUBCOMMANDS:
new Create a new xtool SwiftPM project
dev Build and run an xtool SwiftPM project
ds Interact with Apple Developer ServicesDEVICE SUBCOMMANDS:
devices List devices
install Install an ipa file to your device
uninstall Uninstall an installed app
launch Launch an installed appSee 'xtool help ' for detailed help.
```### Library
xtool includes a library that you can use to interact with Apple Developer Services, iOS devices, and more from your own app. You can use this by adding `XKit` as a SwiftPM dependency.
```swift
// package dependency:
.package(url: "https://github.com/xtool-org/xtool", .upToNextMinor(from: "1.2.0"))
// target dependency:
.product(name: "XKit", package: "xtool")
```