I am using Cocoapods
and if I open the generated xcworkspace
project file then I have two xcworkspace
files in it. One of them is "pod" file which has all the dependencies, but other project file (my project file) has no files or folders to access(literally nothing, I can only see that the file exists there.) I think the issue might be in my Podfile that I created.
Podfile file:
platform :ios, ‘9.1’
use_frameworks!
target ‘XMLElements’ do
pod 'Fuzi', '~> 0.2.0'
end
I can't figure it out.