有没有办法在 post_install cocoa-pods 脚本中访问应用程序目标名称(而不是 pod 目标名称)?
platform :ios, '9.0'
target 'MyProject' do
pod '...'
end
post_install do |installer|
# i need my application target 'MyProject' here
end
有没有办法在 post_install cocoa-pods 脚本中访问应用程序目标名称(而不是 pod 目标名称)?
platform :ios, '9.0'
target 'MyProject' do
pod '...'
end
post_install do |installer|
# i need my application target 'MyProject' here
end