XcodeProj is a library written in Swift for parsing and working with Xcode projects. It's heavily inspired in CocoaPods XcodeProj and xcode.
Project | Repository |
---|---|
Tuist | github.com/tuist/tuist |
Sourcery | github.com/krzysztofzablocki/Sourcery |
ProjLint | github.com/JamitLabs/ProjLint |
XcodeGen | github.com/yonaskolb/XcodeGen |
xspm | gitlab.com/Pyroh/xspm |
If you are also leveraging XcodeProj in your project, feel free to open a PR to include it in the list above.
Add the dependency in your Package.swift
file:
let package = Package(
name: "myproject",
dependencies: [
.package(url: "https://github.com/tuist/xcodeproj.git", .upToNextMajor(from: "7.5.0")),
],
targets: [
.target(
name: "myproject",
dependencies: ["XcodeProj"]),
]
)
Only macOS
# Cartfile
github "tuist/xcodeproj" ~> 7.5.0
pod 'xcodeproj', '~> 7.5.0'
Using swift-sh
you can automate project-tasks using scripts, for example we
can make a script that keeps a projectโs version key in sync with the current
git tag that represents the projectโs version:
#!/usr/bin/swift sh
import Foundation
import XcodeProj // @tuist ~> 7.5.0
import PathKit
guard CommandLine.arguments.count == 3 else {
let arg0 = Path(CommandLine.arguments[0]).lastComponent
fputs("usage: \(arg0) <project> <new-version>\n", stderr)
exit(1)
}
let projectPath = Path(CommandLine.arguments[1])
let newVersion = CommandLine.arguments[2]
let xcodeproj = try XcodeProj(path: projectPath)
let key = "CURRENT_PROJECT_VERSION"
for conf in xcodeproj.pbxproj.buildConfigurations where conf.buildSettings[key] != nil {
conf.buildSettings[key] = newVersion
}
try xcodeproj.write(path: projectPath)
You could then store this in your repository, for example at
scripts/set-project-version
and then run it:
$ scripts/set-project-version ./App.xcodeproj 1.2.3
$ git add App.xcodeproj
$ git commit -m "Bump version"
$ git tag 1.2.3
Future adaption could easily include determining the version and bumping it
automatically. If so, we recommend using a library that provides a Version
object.
Want to start using XcodeProj? Start by digging into our documentation which will help you get familiar with the API and get to know more about the Xcode projects structure.
- Xcode Project File Format
- A brief look at the Xcode project format
- pbexplorer
- pbxproj identifiers
- mob-pbxproj
- Xcodeproj
- Nanaimo
- Facebook Buck
- Swift Package Manager - Xcodeproj
- Git clone the repository
[email protected]:tuist/xcodeproj.git
. - Generate xcodeproj with
swift package generate-xcodeproj
. - Open
XcodeProj.xcodeproj
.
XcodeProj is released under the MIT license. See LICENSE for details.
Tuist is a proud supporter of the Software Freedom Conservacy