Notice
Recent Posts
Recent Comments
Link
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Archives
Today
Total
관리 메뉴

개발 노트

[Xcode 14] requires a development team 오류 본문

개발/개발노트

[Xcode 14] requires a development team 오류

라이아 2023. 1. 25. 15:27

 

Xcode 14로 업데이트 이후 앱 빌드시 아래와 같은 오류 발생

// "" 부분은 각 라이브러리 명칭이 들어감
Signing for "CropViewController-TOCropViewControllerBundle" requires a development team.

 

 

1) Podfile 맨 밑줄에 아래 소스 추가

# Disable signing for pods
post_install do |installer|
    installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
        config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
        config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
        config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
        end
    end
end

 

 

2) 터미널을 이용하여 해당 프로젝트에 접근후 pod install 진행

 

 

( 참고 : https://github.com/TimOliver/TOCropViewController/issues/533#issuecomment-1245332415 )

 

Xcode 14 built error · Issue #533 · TimOliver/TOCropViewController

"TOCropViewController-TOCropViewControllerBundle" requires a development team. Select a development team in the Signing & Capabilities editor.

github.com

 

 

ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ

 

 

사용중인 'DKImagePickerController' 라이브러리에서 해당 오류가 발생함

 

Stored properties cannot be marked potentially unavailable with '@available'

 

 

아래와 같이 해당 라이브러리의 버전을 올려줌

pod 'DKImagePickerController', '4.3.4'

 

 

해당 Podfile 재설치 진행

 

 

( 참고 : https://github.com/zhangao0086/DKImagePickerController/issues/705#issuecomment-1250706936 )

 

XCode 14 Build error: Stored properties cannot be marked potentially unavailable with '@available' · Issue #705 · zhangao0086/

@available(iOS 13.0, *) @objc lazy public var shouldDismissViaUserAction = false Error : Stored properties cannot be marked potentially unavailable with '@available'

github.com

 

Comments