1 min readJan 13, 2020
Hi Ruslan, thanks for the feedback. May help you with the code following.
If you are using multiple pods for multiple targets you can organize the dependencies like following.
def shared_podspod ‘ModellingSDK’, ‘1.7.0’
pod ‘NetworkingSDK’enddef sdk_podssource ‘https://github.com/CocoaPods/Specs.git'
source ‘https://bitbucket.org/somesdk/somesdk.git'pod ‘Fabric’
pod ‘Crashlytics’endtarget ‘mainTarget’ doplatform :ios, ‘9.0’shared_pods
sdk_podsendtarget ‘extensionTarget‘ doplatform :ios, ‘10.3‘
shared_podsend