pod 中多个工程的引用同一个库
2019-11-20 本文已影响0人
jemmy_xl
platform :ios, '8.0'
def share_pods
pod 'aaa'
end
target 'AAAA' do
target 'AAATest' do
inherit! :search_paths
# Pods for testing
end
share_pods
pod 'MJExtension'
end
target 'BBBB' do
share_pods
end