Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- reference
- snackbar
- borderRadius
- enum
- Navigator
- multiprovider
- permission
- switch
- datetime
- Firebase
- ListView.builder
- setstate
- Stream
- swift 문법
- divider
- runTransaction
- globalkey
- changenotifierprovider
- changenotifier
- 문법
- Snapshot
- platformexception
- consumer
- controller
- transform
- user
- provider
- Camera
- signout
- Swift
Archives
- Today
- Total
코딩하는 제리
[Flutter/Error] 플러터 업데이트 후 'IPHONEOS_DEPLOYMENT_TARGET' 에러 발생 본문
Flutter/Error
[Flutter/Error] 플러터 업데이트 후 'IPHONEOS_DEPLOYMENT_TARGET' 에러 발생
JerryCho 2021. 1. 30. 12:20stackoverflow.com/questions/65008533/iphoneos-deployment-target-is-set-to-8-0-xcode-12-flutter
IPHONEOS_DEPLOYMENT_TARGET is set to 8.0 Xcode 12 (Flutter)
I run my Flutter project in Android Studio, pod installation goes well but Xcode build fails at the end every time like 20/30 steps first of complete the whole build. The weird fact is that Android
stackoverflow.com
위의 링크와 같은 에러 발생으로
스택오버플로우에서 해결법을 찾았다.
- Set the MinimumOSversion to 9.0 in ios/Flutter/AppFrameworkInfo.plist
- In Xcode, ensure that the iOS deployment target at Runner -> Project -> Runner is set to 9.0
- In Xcode, ensure that the Deployment Info in Runner -> Targets -> Runner is set to iOS 9.0
- Double check that your GoogleService-Info.plist is there and was added via Xcode (not copy/pasted into the directory via Finder for example)
- Uncomment the #platform :iOS, '9.0' line in your ios/Podfile
Then, run the following in your terminal to build with a fresh state:
flutter clean \ && rm ios/Podfile.lock pubspec.lock \ && rm -rf ios/Pods ios/Runner.xcworkspace \ && flutter build iOS
이후 프로젝트를 실행하고 아이폰 설정-일반-프로파일 에서 해당 프로젝트 '신뢰' 설정해준다.
'Flutter > Error' 카테고리의 다른 글
[Flutter/Error] umbrella header 에러 (0) | 2021.02.14 |
---|---|
[Flutter/Error] iOS 디바이스를 이용한 디버깅 중 cloud_firestore 관련 에러 (0) | 2021.02.14 |
[Flutter/Error] PlatformException 파이어베이스 로그인 에러 해결 (0) | 2021.02.04 |
Comments