강의 잘 보고 있습니다.
mac 에서 opne iOS simulator. 실행하면 아래와 같은 오류가 납니다.
The current Dart SDK version is 2.15.0.
Because contacter requires SDK version >=2.15.1 <3.0.0, version solving failed.
pub get failed (1; Because contacter requires SDK version >=2.15.1 <3.0.0, version solving failed.)
Could not build the application for the simulator.
Error launching application on iPhone SE (2nd generation).
그래서
pubspec.yaml 파일에서
environment:
sdk: ">=2.15.1 <3.0.0"
수정하여
environment:
sdk: ">=2.15.0 <3.0.0"
하니깐....... sdk 오류는 넘어갔는데 아래와 같은 오류가 납니다. T T
Could not build the application for the simulator.
Error launching application on iPhone SE (2nd generation)
iPhone SE를 시뮬레이터로 써서 그런가요?
(최신 버전 시뮬레이터도 있는지요 ? )
