Compile Error

When I added the ExcelIO library to my app and compiled it, the following error occurred:

Framework 'SwiftSpreadsheet' not found Linker command failed with exit code 1 (use -v to see invocation)

I added the following to my Podfile and installed it, but the error persists. (No errors occurred during pod install.)

platform :ios, '9.0'

Pods for medical_expense

target 'medical_expense' do

Comment the next line if you don't want to use dynamic frameworks

use_frameworks!

pod 'SwiftyTesseract', '~ 2.0' pod 'SwiftSpreadsheet' end

Pods for Petty_staff

target 'Petty_staffTests' do inherit! :search_paths pod 'ReachabilitySwift'

Pods for testing

end

target 'Petty_staffUITests' do inherit! :search_paths

Pods for testing

end

Note that "SwiftSpreadsheet" exists in

/Users/ymdakr/MyAppli/Medical_Expense/Pods/Target Support Files/Pods-medical_expense/Pods-medical_expense.debug.xcconfig

and

/Users/ymdakr/MyAppli/Medical_Expense/Pods/Target Support Files/Pods-medical_expense/Pods-medical_expense.release.xcconfig

Only in [Files/Pods-medical_expense/Pods-medical_expense.debug.xcconfig]

What should I do?

Cocoapods is a third-party tool, so if you're committed to using that as a dependency manager for your project, you should seek support using their support resources.

As an alternative, Xcode supports Swift Package Manager, so if you're interested in switching all of your dependencies over to using that instead, that will also resolve this issue for you.

— Ed Ford,  DTS Engineer

Compile Error
 
 
Q