- 샘플 앱 podfile 내용
platform :ios, ‘11.0’
use_frameworks!
source ‘GitHub - CocoaPods/Specs: The CocoaPods Master Repo’
target ‘KakaoSDKSample’ do
pod ‘KakaoSDKCommon’, ‘~> 2.10.1’
pod ‘KakaoSDKAuth’, ‘~> 2.10.1’
pod ‘KakaoSDKUser’, ‘~> 2.10.1’
pod ‘KakaoSDKTalk’, ‘~> 2.10.1’
pod ‘KakaoSDKFriend’, ‘~> 2.10.1’
pod ‘KakaoSDKStory’, ‘~> 2.10.1’
pod ‘KakaoSDKLink’, ‘~> 2.10.1’
pod ‘KakaoSDKNavi’, ‘~> 2.10.1’
pod ‘KakaoSDKTemplate’, ‘~> 2.10.1’
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings[‘BUILD_LIBRARY_FOR_DISTRIBUTION’] = ‘YES’
end
end
end
-
v1에서 v2로 변경될때 가이드 따라 설치했으며 기존 podfile 내용은 pod ‘KakaoSDK’ 로 추가해 사용중 이었습니다.
-
저건 제가 빌드가 안되서 테스트 해봤던 부분이었습니다.
-
가이드 확인하고
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings[‘BUILD_LIBRARY_FOR_DISTRIBUTION’] = ‘YES’
end
end
end
이 부분 추가 후에도 오류 발생했습니다!
- v1에서 v2로 변경되었을 시 마이그레이션 이후에 v1 framework 제거하는걸 깜박했네요. 소스 중에는 v1 관련 소스는 없습니다.