react native iOS 빌드실패

박은정·2023년 3월 16일
0

TIL

목록 보기
68/70

Signing for "PersonalizedAdConsent-PersonalizedAdConsent" requires a development team. Select a development team in the Signing & Capabilities editor.

->

platform :ios, '12.0'

# source 'https://github.com/CocoaPods/Specs.git'

target 'MySampleAppPod' do
  use_frameworks!
  pod 'LineSDKSwift', '~> 5.0'
end

# 아래 부분을 추가해주세요 ✅
post_install do |installer|
  installer.pods_project.targets.each do |target|
    if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
      target.build_configurations.each do |config|
        config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
      end
    end
  end
end

기기등록여부확인
https://cereme.dev/appdev/react-native-iphone-device-run/

profile
새로운 것을 도전하고 노력한다

0개의 댓글