-
COVI-iOS-SDK 리포지토리를 로컬로 복제합니다.
-
COVI-iOS-SDK/Example
에서pod install
을 실행합니다. -
COVI-iOS-SDK.xcworkspace
프로젝트를 실행합니다.
dlyd missing symbol called
에러가 발생한다면, Podfile에서 COVI-iOS-SDK 관련 타겟들의 config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION']을 'YES'로 설정해주세요.
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