FE/에러노트

RN에러 - Signing for "TOCropViewController-TOCropViewControllerBundle" requires a development team.

<zinny/> 2022. 10. 11. 19:44
728x90

xcode에서 실기기로 테스트하고 있는데 오류가 발생했다 ㅠㅠ

 Signing for "TOCropViewController-TOCropViewControllerBundle" requires a development team.

빌드에 실패 하면서 이런 오류가 떴다. 

 

 

 

✔️ 해결 방안

podfile에서 코드 추가 필요

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

나는 이미 installer부분에 쓰여있는 게 많아서 밑에다 그냥 붙여서 쓰긴 했음 

728x90