Link Errors with Parse.Framework iOS

Link Errors with Parse.framework iOS

Make sure you link against the SystemConfiguration and the Security framework in your project. See this question for more details. As Hector pointed out in the comments, all of the required frameworks for Parse can be found in the iOS Quick Start Guide.

  • AudioToolbox.framework
  • CFNetwork.framework
  • CoreGraphics.framework
  • CoreLocation.framework
  • libz.1.1.3.dylib
  • MobileCoreServices.framework
  • QuartzCore.framework
  • Security.framework
  • StoreKit.framework
  • SystemConfiguration.framework

Reference Error Include Parse Framework in Swift Xcode 7

To use Parse, you'll need the following frameworks added from "Link Binary With Libraries" (from parse documentation):

  • AudioToolbox.framework
  • CFNetwork.framework
  • CoreGraphics.framework
  • CoreLocation.framework
  • QuartzCore.framework
  • Security.framework
  • StoreKit.framework
  • SystemConfiguration.framework
  • libz.dylib
  • libsqlite3.dylib

If you're using the -ObjC linker flag required by some third-party libraries, add these as well:

  • Accounts.framework
  • Social.framework

You must be missing libz.dylib and libslite3.dylib. Add the ones missing from the list above.

Linking error when building Parse in Xcode 7

I suggest you integrate Parse using CocoaPods.

Cocoapods manages the library dependencies in a much better way.

The following is a sample PodFile:

source 'https://github.com/CocoaPods/Specs.git'

platform :ios, '7.0'

inhibit_all_warnings!

target '**YourProjectName**' do

pod 'Parse', '~> 1.7.1'

pod 'AFNetworking', '2.2.3'

end

Build error using Parse.framework on iOS

You also need to include the Parse SDK from here:

https://parse.com/docs/downloads

Parse.framework

ParseUI.framework
etc

The easiest (if you're not well into a project) is actually to just start with a quickstart project.

https://parse.com/apps/quickstart

Apple Mach-O Linker Error Parse

According to Parse iOS quick start doc :

You need to have all these frameworks added to your build Target

Sample Image

Framework Errors in Parse App ParseFacebookUtils

Not sure if you are using CocoaPods or not, but if so, I ran into the same issue today when updating. From what it appears, 'Facebook-iOS-SDK' and 'ParseFacebookUtils' was removed from the most recent update. Without going to in depth in your errors, it appears as though linker errors are occurring. In my Podfile, I simply added:

pod 'Facebook-iOS-SDK'
pod 'ParseFacebookUtils'

If not using CocoaPods, it may help to make sure those two libraries are within your source code, clean, and rebuild.



Related Topics



Leave a reply



Submit