I'd like to use some libraries in both main app and its extension. I tried this podfile
platform :ios, '10.2'
use_frameworks!
target 'myApp' do
target 'myAppShareExtension' do
pod 'SVProgressHUD', :git => 'https://github.com/SVProgressHUD/SVProgressHUD.git'
pod 'Alamofire', '~> 4.0'
pod 'FileKit', '~> 4.0.1'
end
end
But my Targets Support Files
is named Pods-myApp-myAppShareExtension
while it should be Pods-myAppShareExtension
which makes me think the problem comes from the podfile.
Thanks.