Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is is normal to have "Pods/Products/" files red/missing?

Tags:

cocoapods

I am trying to understand CocoaPods better and if there's something wrong with my setup.

I have my Pods/Products/ directory show it's content as red (missing) in XCode, is this an issue?

Specifically I am accessing a Storyboards.bundle/xxx file and when I run that code it crashes, saying it can't find the bundle. The place where I see this Storyboards.bundle is in the previously mentioned directory, and it's red which means its missing... is there a way for me to resolve this?

enter image description here

like image 819
Victor S Avatar asked Nov 01 '22 17:11

Victor S


1 Answers

This is completely normal. Those frameworks are generated during build. They are red, because they are currently missing, but during the CocoaPods build phase they are created.

Don't worry about it, just close that group up and forget about it.

like image 186
squarefrog Avatar answered Nov 10 '22 16:11

squarefrog