Xcode 6 and Cocoapods using versions 0.34.4 and cocoapods-0.35.0.rc2

I have a problem with cocoapods using version 0.34.4 and cocoapods-0.35.0.rc2 After I upgraded my laptop to OS X Yosemite I had to update gems and cocoapods and my old iOS project stops working

I am getting the following errors:

using cocoapods-0.34.4:
ld: library not found for -lPods-Evernote-SDK-iOS
clang: error: linker command failed with exit code 1 (use -v to see invocation)

using cocoapods-0.35.0.rc2:
There is a circular dependency between ShareKit/NoARC and ShareKit/Core

      

Here is my podfile content, Any help ??

platform :ios, '6.0'
source 'https://github.com/CocoaPods/Specs.git'


pod 'CXAlertView'
pod 'ShareKit'
pod 'JSONKit'
pod 'FPPopover'
pod 'Base64'
pod 'CZDateFormatterCache'
pod 'JMImageCache'
pod 'Reachability'
pod 'MFSideMenu'
pod 'ASIHTTPRequest'

      

+3


source to share


2 answers


Remove the current version 0.35.0 that you could run:

sudo gem uninstall cocoapods

you have to install a specific version of cocoa pods using the command:



sudo gem install cocoapods -v 0.34.4

than pod install

+1


source


Solved by creating a new project! I have used cocoapods-0.34.4 with a new project



0


source







All Articles