해결 방법
1. cd ios
2. pod update
3. flutter run
stack overflow
In Flutter project, I Also faced with this issue. Fixed by updating flutter and cocoa pods to the latest version.
Solution:-
- flutter clean
- rm -Rf ios/Pods
- rm -Rf ios/.symlinks
- rm -Rf ios/Flutter/Flutter.framework
- rm -Rf ios/Flutter/Flutter.podspec
- flutter pub get
- cd ios
- pod install
- arch -x86_64 pod install (On an M1 mac use => arch -x86_64 pod install)
- cd ..
- flutter build ios
- flutter run
How to solve "error running pod install" in flutter on mac?
I have an error when I tried to launch my project on my iPhone, the basic Flutter example is working on my iPhone but when I use my project I have this error.
stackoverflow.com
'Languages > Dart & Flutter' 카테고리의 다른 글
flutter Naver Map MissingPluginException (0) | 2023.06.09 |
---|---|
[firebase_dynamic_links/unknown] com.google.android.gms.common.api.ApiException: 400: Your project does not own Dynamic Links domain (0) | 2022.12.05 |
오류 ) CocoaPods not installed or not in valid state. 해결방법 (0) | 2022.02.16 |
오류 ) FormatException: Invalid character (at character 50) [api 주소] (0) | 2022.02.08 |
dart .. operator 문법 (0) | 2021.02.03 |