Using Swift5 and Xcode-10.2.
After a Cocoapods install usage, I cannot import the Swift module - Why ???
And yes, there is plenty of posts out there that give ideas why. But none of them worked for me so far.
Here is my pod file:
project 'M.xcodeproj'
workspace 'MyApp.xcworkspace'
platform :ios, '11.0'
inhibit_all_warnings!
source 'https://github.com/artsy/Specs.git'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
def shared_pods
pod 'SwiftSVG'
end
target 'MyApp' do
inherit! :search_paths
shared_pods
end