Getting Framework related warning in Xcode 7.0 Getting Framework related warning in Xcode 7.0 xcode xcode

Getting Framework related warning in Xcode 7.0


I get rid of these by finding the target(s) that generated the error, then removing/deleting the (odd) path in the "Framework Search Paths" build setting:

specific build setting


What solves this for me is to create a new scheme. Click on Product-> Scheme -> New Scheme and just hit OK.Then my app seems to build and run.


After much digging, I found this is actually related to my test target of my app.

enter image description here

The Fix

If you select your project, and look under ‘Targets’, you should see two targets. One is your app and the other one is your test. Under ‘Search Paths’ (in my test target), I found it was including two items under ‘Framework Search Paths’:

$(SDKROOT)/Developer/Library/Frameworks$(inherited)

enter image description here

Deleting those entries in my older project then removed the warning. I did not have to make any changes to the other target.