XcodeProj icon indicating copy to clipboard operation
XcodeProj copied to clipboard

📝 Read, update and write your Xcode projects

Results 42 XcodeProj issues
Sort by recently updated
recently updated
newest added

Relates to https://github.com/tuist/tuist/issues/4572 ### Short description 📝 - Xcode 14 supports extensionless watchOS applications (that have the regular application product identifier) - Those target can now include source, resources and...

Xcode14

I use xcodeproj to add a custom buildRule to buildRules of nativetarget, and then save the proj file. Customized buildrule does not take effect.

I have a Swift package with two library products: ```swift let package = Package( name: "IRIS", platforms: [.macOS(.v10_10)], products: [ .library( name: "MySDK-release", targets: ["sdk-release"] ), .library( name: "MySDK-debug", targets:...

Resolves https://github.com/tuist/XcodeProj/issues/683 ### Short description 📝 Ensure UUIDs are considered during sort by filename to ensure information is not lost when filenames are equal. ### Solution 📦 Consider both the...

## Context 🕵️‍♀️ Trying to make Xcode project deterministic for easy diffing the same as [this issue](https://github.com/tuist/XcodeProj/issues/265). ``` let xcodeproj = try XcodeProj(path: projectPath) xcodeproj.pbxproj.invalidateUUIDs() let settings = PBXOutputSettings(projFileListOrder: .byFilename)...

## Context 🕵️‍♀️ > Xcode 11 added [test plans](https://developer.apple.com/videos/play/wwdc2019/413), which neither `XcodeProj` nor `XcodeGen` support yet. ## What 🌱 > Support for test plans has been mentioned in #442, but...

## Context 🕵️‍♀️ I'm trying to write some code that syncs a subgroup of my project with a directory, and adds new files to the Sources phase of my build....

Resolves https://github.com/tuist/xcodeproj/issues/670 ### Short description 📝 - Add path based accessor for files in a group ### Solution 📦 - Simply generate a full path, using the available source root,...

## Context 🕵️‍♀️ `PBXGroup` contain an array of files. As far as I'm aware, Xcode places very little restriction on what can be placed in a group, and it's up...

Resolves https://github.com/tuist/xcodeproj/issues/YYY ### Short description 📝 Demonstrate the issue I reported in #666 ### Solution 📦 You asked for a test demonstrating the issue, so here it is. :-) The...