The Wayback Machine - https://web.archive.org/web/20201214214553/https://github.com/phimage/XcodeProjKit
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 

README.md

XcodeProjKit

Parse project file and write it to open step format.

Project description

Plist files could be in binary, xml or open step format. All could be parsed natively using PropertyListSerialization.

⚠️ But you cannot be written back into open step format.

This project aim to

  • check xcode project file. Error could occurs after merging file using git.
  • rewrite the file into open step format, if you edit it using some command line like plutil.

Alternatively you can use apple private framework DVTFoundation, like Xcodeproj do.

Usage

Read

let xcodeProj = try XcodeProj(url: url)
let project: PBXProject = xcodeProj.project

let mainGroup: PBXGroup? = project.mainGroup
let targets: [PBXNativeTarget] = project.targets
let buildConfigurationList: XCConfigurationList? = project.buildConfigurationList

Write

try xcodeProj.write(to: newURL, format: .openStep)

Setup

Using Swift Package Manager

let package = Package(
    name: "MyProject",
    dependencies: [
        .package(url: "https://github.com/phimage/XcodeProjKit.git", .upToNextMajor(from: "2.2.0")),
        ],
    targets: [
        .target(
            name: "MyProject",
            dependencies: ["XcodeProjKit"]),
        ]
)

Using Carthage

Carthage is a decentralized dependency manager for Objective-C and Swift.

Add the project to your Cartfile.

github "phimage/XcodeProjKit"

Run carthage update and follow the additional steps in order to add MomXML to your project.

Using Cocoapod

Add the project to your Podfile.

pod "XcodeProjKit"

Referenes

Thanks

TODO

  • Make a command line tools

Contribute

  • Fork
  • Make PR
You can’t perform that action at this time.