반응형
This can cause issues if your application depends on plugins that do not support iOS or macOS.
책을 보면서 플러터 공부 중인데, 책이 너무 오래되었나보다.
책 소스 다운 받아 flutter run을 하니, 오류가 나왔다.
Podfile의 의존성이 오래되서 그런거라고 한다.
Podfile안의 의존성에 버전이 명시되지 않았다면 다 지우고 다시 실행하면 괜찮아질 것 같다.
다음은 macbook 노트북에서 프로젝트 디렉토리로 이동한 후, 삭제 명령어를 날린 기록이다.
(역시 인터넷 검색을 통해 찾음)
% flutter clean
% rm -Rf ios/Pods
% rm -Rf ios/.symlinks
% rm -Rf ios/Flutter/Flutter.framework
% rm -Rf ios/Flutter/Flutter.podspec
% rm -Rf ios/Podfile
그리고 다시 flutter run을 하니 이제 오류를 맞닥트렸다.
하나씩 풀어보자.
반응형
'프로그래밍 > Flutter' 카테고리의 다른 글
[Flutter] Unhandled Exception: ServicesBinding.defaultBinaryMessenger was accessed before the binding was initialized. (0) | 2023.07.21 |
---|---|
Flutter run key commands. (0) | 2022.09.13 |
플러터 첫 시작, 요란한? 오류를 만나다 : Error (Xcode): No profiles for 'com.example.counterApp' were found: (0) | 2022.09.13 |
dart language 초간단 훑어보기 (0) | 2022.09.13 |
플러터 SDK설치 후 PATH설정 및 doctor 실행 결과 화면 (0) | 2022.09.13 |