So, I am using a pre-implemented FreeRDP project. I built the project correctly and it works. I want to use some external libraries and I want to manage them using cocoa pods. I am reviewing the process of creating my pod file and it is successful. It is not until I build that I get an error that the -lPods libraries could not be found.
I cannot find a good solution from Cocoapods that solves this. Does anyone know how to fix this?
My pod file is as follows:
platform: ios, "6.0"
target: Test do pod 'EasyTableView', '~> 1.1.1'
end
source
share