Hello,
I have my own library which is publised under cocoapods.
i decide to publish it via Swift Package Manager (spm).
In fact, my library depends on another external frameoworks.
how can I manage that ?
for example in the podspec :
spec.subspec 'Google-Mobile-Ads-SDK' do |dfp|
dfp.vendored_frameworks = 'BlueStackDFPAdapter.xcframework'
dfp.dependency 'BlueStack-SDK/Core'
dfp.dependency 'Google-Mobile-Ads-SDK','9.13.0'
end
how can we move it to the spm?
thank you.
2
0
1.2k