When trying to build an application, using Cocoapods that also includes ParseFacebookUtilsV4 with the latest Facebook SDK, we get a linker error:  ``` ld: framework not found FBSDKCoreKit for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) ``` I have provided a sample project that makes it reproducible: https://dl.dropboxusercontent.com/u/119336/ParseLinkerErrorSample.zip Podfile: ``` ruby source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.4' link_with 'ParseSample' inhibit_all_warnings! pod 'FBSDKCoreKit' pod 'FBSDKLoginKit' pod 'FBSDKShareKit' pod 'Parse' pod 'ParseFacebookUtilsV4' ```