본문 바로가기
Development Solutions/Flutter & Dart

[flutter] Shader compilation error

by studio ODOC 2021. 11. 21.
반응형
문제 상황

flutter 버전 업그레이드 이후부터 프로젝트 앱 빌드시 Shader compilation error를 포함한 에러가 여러번 호출되는 문제가 있었습니다.

 

 

해결 방법
  • flutter 버전을 다운그레이드 하는 방법
  • flutter run --enable-software-rendering 명령을 이용하여 다시 빌드하는 방법
  • 안드로이드 에뮬레이터의 하드웨어 가속을 disable하는 방법

 

필자는 flutter run --enable-software-rendering 명령으로 문제를 해결했습니다.

 

 

 

https://www.google.com/search?q=Shader+compilation+error&oq=Shader+compilation+error&aqs=chrome..69i57j0j0i30l2j0i5i30l4.695j0j4&sourceid=chrome&ie=UTF-8 

 

Shader compilation error - Google 검색

2020. 11. 3. · Shader Compilation Error by changing the Emulator's Settings. Press that … button which is located on the side panel of the emulator, and go to ...

www.google.com

 

반응형