Error: Method not found: 'UnmodifiableUint8ListView'.UnmodifiableUint8ListView(Uint8List(0)); 해결 방법

2024-11-04


사진: Unsplash 의 Mathias Reding


1.  해결 방법

 

 

자신의 프로젝트 경로로 이동 후 아래 명령어 사용

 

- flutter pub cache clean
- flutter channel stable 
- flutter pub get 

위에 명령어로 안될 경우 아래 명령어 다시 실행

- flutter pub cache clean
- flutter pub get
- flutter pub upgrade

 


2. Error: CocoaPods's specs repository is too out-of-date to satisfy dependencies.

 

실행해보고 위에 에러 추가 발생시 아래 순서 대로 실행 

 

1. 자신의 프로젝트 /ios 폴더에서 Podfile.lock 파일을 제거
2. 터미널에서 자신의 프로젝트 ios 폴더로 이동 후 아래 명령어 실행
3. pod install --repo-update
4. 터미널에서 다시 다시 자신의 프로젝트 경로로 이동 후 아래 명령어 순서대로 실행
5. flutter clean
6. flutter run

 

* 주의 사항 flutter run 대신에 start debugging 으로 실행하면 에러 해결 안됨

 


참고 링크 : https://github.com/jonataslaw/get_cli/issues/263#issue-2365926859

 

build issue in dart 3.5.0 - UnmodifiableUint8ListView · Issue #263 · jonataslaw/get_cli

Building package executables... (5.4s) Failed to build get_cli:get: ../../../.pub-cache/hosted/pub.dev/win32-5.3.0/lib/src/guid.dart:32:9: Error: Type 'UnmodifiableUint8ListView' not found. final U...

github.com

 


메인 이미지 출처 : 사진: UnsplashMathias Reding