I am trying to create and run an OSX application with Cocoa. However, when I try to set the deployment target to anything other than 10.8, I get a runtime error when the application tries to start:
dyld: Library not loaded: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices Referenced from: /Users/chris/Library/Developer/Xcode/DerivedData/Build/Products/Release/MyApp.app/Contents/MacOS/MyApp Reason: Incompatible library version: MyApp requires version 64.0.0 or later, but ApplicationServices provides version 1.0.0
As far as I can tell, there is nothing in my application that uses anything from ApplicationServices.framework. I donβt even know why he will try to download this library.
For reference, I use several third-party frameworks, including Growl.framework (Growl 2.0), Sparkle.framework (Sparkle 1.5 b6) and MagicKit.framework (https://github.com/aidansteele/MagicKit)
source share