Dev/Flutter

[Flutter] 오류 - Xcode couldn't find any iOS App Development provisioning profiles

healthyryu 2025. 3. 3. 21:02

보통 아래와 같은 에러가 나오면 필자의 경우는 Podfile.lock 을 지우고 새롭게 pod 을 인스톨 해준다.

 

Could not build the precompiled application for the device.
Error (Xcode): No profiles for 'com.....' were found: Xcode couldn't find any iOS App Development provisioning profiles
matching 'com....'. Automatic signing is disabled and unable to generate a profile. To enable automatic signing, pass

-allowProvisioningUpdates to xcodebuild.
/Users/jihoon/SourceCode/.../ios/Runner.xcodeproj

It appears that there was a problem signing your application prior to installation on the device.
Verify that the Bundle Identifier in your project is your signing id in Xcode
  open ios/Runner.xcworkspace
Also try selecting 'Product > Build' to fix the problem.
Error running application on jihoon의 iPhone 11.

 

$cd ios // iOS 폴더로 이동
$rm -rf Podfile.lock // Podfile.lock 삭제
$pod install  // Pod 재설정
반응형