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/