Xcodeの1プロジェクト内に複数のTarget(HogeA, HogeB)が存在する場合で、その両方にCocoaPodsでライブラリ(BlocksKit)を追加したい場合の、Podfileの書き方。
platform :ios
target 'HogeA' do
pod 'BlocksKit'
end
target 'HogeB' do
pod 'BlocksKit'
end
Go to list of users who liked
More than 5 years have passed since last update.
Xcodeの1プロジェクト内に複数のTarget(HogeA, HogeB)が存在する場合で、その両方にCocoaPodsでライブラリ(BlocksKit)を追加したい場合の、Podfileの書き方。
platform :ios
target 'HogeA' do
pod 'BlocksKit'
end
target 'HogeB' do
pod 'BlocksKit'
end
Register as a new user and use Qiita more conveniently
Go to list of users who liked