>" I keep getting this warning in my Xcode IDE: Missing dependenc...">

Missing dependency target "<PBXTargetDependency: 0x201d16ca0: <no cached name >>"

I keep getting this warning in my Xcode IDE:

Missing dependency target "<PBXTargetDependency: 0x201d16ca0: <no cached name →"

What does it mean?

+6
objective-c xcode4
source share
2 answers

This means that in the project.pbxproj file inside the package yourproject.xcodeproj, you must delete one or more PBXTargetDependency definitions. After deleting the entries, the warning will no longer be displayed. This problem is Xcode, not project related, so I filed an error in bugreporter (https://bugreport.apple.com/).

+8
source share

OK, I got it, basically you need to go to the project.proj file and find a line that mentions this. The way you fix it

+3
source share

All Articles