-1

I added pods to an existing workspace and now I have 2 of the same project in my workspace (Both projects ending in IOS). If I delete either one, I lose all references to the project.

Here is what the project tree looks like and the pods file. Anyone have any insight?

enter image description here

1 Answers1

0

This is how the podfile should be

# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'

target 'Demo8' do
  # Comment this line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

pod 'FBSDKCoreKit', '~> 4.16'    

end

This is no requirement to specify workspace externally until there is any requirements.

Parth Adroja
  • 11,417
  • 5
  • 35
  • 65