[iOS] Pods Multi Target Setting

Logan·2021년 3월 11일
1

Podfile의 target이 여러개 일 경우
def로 설치할 pods를 감싸고 target에서 호출해주면 끝입니다.

def share_pods
 	 pod 'JTAppleCalendar'
 	 pod 'Moya'
end


target 'SubscriptionManagement' do
	share_pods

end

target 'SubscriptionWidgetExtension' do
	share_pods

end
profile
iOS개발자 꿈나무

0개의 댓글