Получить цель (и) приложения или имя приложения на CocoaPod post_install - PullRequest
0 голосов
/ 29 мая 2018

Есть ли способ получить доступ к именам целей приложений (а НЕ к имени цели pods) в скрипте post_install cocoa-pods?

platform :ios, '9.0'

target 'MyProject' do
  pod '...'
end

post_install do |installer|
  # i need my application target 'MyProject' here
end
...