10

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.

Community
  • 1
  • 1
oleynikd
  • 896
  • 13
  • 33
  • I'm Having exactly the same Issue... After updating to 0.38 beta 2, the Parse only stopped working... I think it's a bug within cocoa pods and maybe any pod that is used as a library. Do you have any other library as a pod or only Parse? All my other pods have the code files. – Raphael Ayres Jul 10 '15 at 12:53
  • I'm having the same issue – fatuhoku Jul 19 '15 at 13:21
  • Its really use full answer :- http://stackoverflow.com/a/42486383/3752143 Its work for me. – Mitul Marsoniya Feb 27 '17 at 16:25

2 Answers2

7

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.

hackamanshu
  • 376
  • 3
  • 5
4

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.

oleynikd
  • 896
  • 13
  • 33