Thank you always for all of your knowledge.
I have checked my issue in StackOverflow and found similar issues but could not find my case specifically. Greatly appreciated If some of you could advise my situation.
My environment;
xcode: Version 6.0.1, ios target: IOS 8, code: OBjective-C
I opened my project by Myproject.xcworkspace.
Issue;
I used Cocoapod to install some libraries. Here was the code in podfile.
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '6.0'
pod 'SDWebImage', '~> 3.6'
pod 'AFNetworking', "~> 2.0"
pod 'KissXML'
Then in terminal.
pod install
After all I knew I did not need some of these libraries, then modify podfile like below.
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '6.0'
pod 'SDWebImage', '~> 3.6'
Then in terminal.
pod update
I found AFNetworking and KissXML are removed from my project.
However when I did Product->Archive in Xcode, the following error occurred.
ld: library not found for -lPods-AFNetworking clang: error: linker command failed with exit code 1 (use -v to see invocation)
and
ld: library not found for -lPods-KissXML clang: error: linker command failed with exit code 1 (use -v to see invocation)
Just Run went succeeded but Archive came up with those error.
Why build process still try to find libraries which has been already removed?
Thank you always.