투케이2K

96. (TWOK/ERROR) [Ios] 빌드 에러 - 코코아팟 빌드 에러 iOS deployment target versions is 9.0 to 15.5.99 본문

투케이2K 에러관리

96. (TWOK/ERROR) [Ios] 빌드 에러 - 코코아팟 빌드 에러 iOS deployment target versions is 9.0 to 15.5.99

투케이2K 2022. 9. 5. 10:48

[환경 설정 및 설명]

프로그램 : Xcode

설 명 : 빌드 에러 - 코코아팟 빌드 에러 iOS deployment target versions is 9.0 to 15.5.99

 

[에러 원인]

1. 코코아팟 Podfile 팟 파일에 설정 된 iOS 타켓 버전이 지원 버전과 맞지 않아서 발생하는 이슈

The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, 
but the range of supported deployment target versions is 9.0 to 15.5.99.
 

[해결 방법]

1. 코코아팟 Podfile 수정 실시 (iOS 9.0 지원)

# Uncomment this line to define a global platform for your project
platform :ios, '8.0'

target 'AttendCheck_ios' do
    pod 'AFNetworking', '~> 3.0'
    pod 'ActionSheetPicker-3.0', '~> 1.3.10'
    pod 'SwipeView', '~> 1.3.2'
    pod 'Firebase/Core'
    pod 'Firebase/Messaging'
    pod 'SDWebImage', '~> 4.0'
    pod 'SDWebImage/WebP'
    pod 'MarqueeLabel'
    pod 'MBProgressHUD', '~> 0.9.1'
    pod 'MMDrawerController', '~> 0.5.7'
    pod 'TYCyclePagerView'
    pod 'CircleProgressBar', '~> 0.32’
    pod 'JSONModel', '~> 1.8'
    pod 'AppsFlyerFramework'

    post_install do |installer|
    installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
      end
    end
  end

end

2. 터미널 실행 >> 프로젝트 경로 이동 >> 코코아팟 다시 install 설치 수행 실시

3. 프로젝트 전체 재빌드 수행 실시

 

 

반응형
Comments