I am getting this error when I try to Build the app or even try to run in on a real phone or do Product > Archive.
ld: warning: directory not found for option '-F/Users/mycomputer/Google Drive/PROJECTS/MyProject/code/MyProject/build/Debug-iphoneos'
ld: framework not found Charts
clang: error: linker command failed with exit code 1 (use -v to see invocation)
These are the things I have tried already (no change of course):
- Re-run
pod install
again and re-opened the workspace file. - Did Clean (clean succeeded) and then try to run
Archive
again. - Set
build active architecture only
to Yes (this thread) - Removed pod project completely and ran
pod install
again - I even removed
pod 'SwiftCharts', '~> 0.3'
from the PodFile and its use from the project, but still the error message is the same.
The error messages says:
ld: framework not found Charts
but my PodFile
does have this: pod 'SwiftCharts', '~> 0.3'
This is my PodFile:
# Uncomment this line to define a global platform for your project
platform :ios, “9.0”
use_frameworks!
pod 'Parse'
pod 'ParseUI'
pod 'MBProgressHUD', '~> 0.9.1'
pod 'JSQMessagesViewController'
pod 'SwiftCharts', '~> 0.3'
target 'ShitTalk' do
end
target 'ShitTalkTests' do
end
target 'ShitTalkUITests' do
end
What else can I try?