oleynikd
oleynikd

Reputation: 932

Parse/Parse.h file not found after update with Cocoapods

I tried everything I could imagine to fix this issue... Please help!

After updating to Xcode 6.4 and Parse SDK 1.7.5 I'm getting build error:

"Parse/Parse.h file not found"

Here's my Podfile:

target 'TV Admin' do
   pod 'RETableViewManager', '~> 1.6'
   pod 'SDNetworkActivityIndicator'
   pod 'Motif'
   pod 'Parse', '~> 1.7' 
end

All Cocoapods dependencies except Parse are working great. Here's .xcworkspace view: enter image description here

I'm using Cocoapods 0.38.0.beta.2

Thanks.

Upvotes: 10

Views: 3463

Answers (2)

oleynikd
oleynikd

Reputation: 932

So the problem was in podspec file. Parse team updated it to 1.7.5.3 for Parse, ParseFacebookUtils, ParseCrashReporting and now everything works great.

Now simply running pod update should fix the issue.

Here's the original post on official developers group.

Upvotes: 4

hackamanshu
hackamanshu

Reputation: 376

I ran into this issue after updating XCode to 6.4 today. Taking a look at the Search Frameworks showed that they were empty after the XCode update. So change the Framework Search Paths in Project -> Build Settings -> Framework Search Paths and Add $(SRCROOT) (recursive) That fixed it for me.

Upvotes: 7

Related Questions