Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any way to clean only current Xcode project but not Cocoapods dependencies?

Relatively frequently I need to clean & rebuild because Swift starts to miss things up. But doing so, I am rebuilding Cocoapods dependencies, to no avail. Can I clean only the project, not the whole workspace?

Thanks, Zsolt

like image 992
Zsolt Szatmari Avatar asked Jan 27 '17 10:01

Zsolt Szatmari


People also ask

Can I delete Podfile?

xcworkspace for you. The only thing left is Podfile, which you can remove it with remove command rm .

What does clean do in Xcode?

2. Clean the Build Folder. This will delete all of the products and intermediate files in the build folder. To clean the build folder you can use the shortcut Command+Option+Shift+K or Menu Bar → Product → Hold Option Key → Clean build Folder .

What is pods XcodeProj?

XcodeProj is a library written in Swift for parsing and working with Xcode projects.


1 Answers

Go to Manage schemas -> Click Edit button for your active schema -> Select Build target -> Uncheck the "Find Implicit dependencies" checkbox .

like image 132
Svekke Avatar answered Nov 05 '22 15:11

Svekke