보통 아래와 같은 에러가 나오면 필자의 경우는 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 재설정
반응형
'Dev > Flutter' 카테고리의 다른 글
[Flutter] MacOS 업데이트 Xcode 업데이트... 또 빌드오류?! (0) | 2025.03.21 |
---|---|
[Flutter] Dart, Flutter 설치 오류 (0) | 2025.03.19 |
[Flutter] Flutter에서 Apple Sign-In과 Firebase 인증 통합 구현하기 (0) | 2024.12.31 |
[Flutter] Firebase + Kakao Login 로그인 기능 만들기 (2) | 2024.12.26 |
[Flutter] Riverpod 사용해보기 -강의- (1) | 2024.12.08 |