I created a skeleton pod with pod lib create and I am writing my code into the Development pods > MyPod > Classes group.
I am getting the error Swift is not supported for static libraries.
I haven't really edited any of the other files besides replaced the ReplaceMe.swift and added some others.
Here's the podfile:
use_frameworks!
target 'MyPod_Example' do
pod 'MyPod', :path => '../'
target 'MyPod_Tests' do
inherit! :search_paths
end
end
What am I missing?