알아가기/Flutter

[Flutter] 앱 릴리즈 하려는데 Execution failed for task 뜰 때

XEV 2022. 10. 13. 00:26

Generate Signed Bundle 안됨

VS Code 에서 플러터 앱을 작성하고 안드로이드 스튜디오에서 기존에 작성된 앱을 업데이트하여 버전 업된 Build > Generate Signed Bundle 을 하려는데 먹통이 되었다. 원래대로라면 팝업이 뜨고 앱 key store 에 비밀번호를 입력해야 하는데 여기서 일단 문제 발생.

이 문제는 flutter upgrade 및 android studio 빌더였나.. 둘을 업데이트 하니 해결되었다.

 

 

 

Execution failed for task ':app:compileFlutterBuildRelease'. 메시지 뜸

이후, 다시 앱 빌드를 하려는데 Execution failed for task ':app:compileFlutterBuildRelease'. 가 빌드 상태 창에 떴다. 이를 해결하기 위해 검색해보니

flutter clean,
flutter pub get,
flutter build appbundle --release --no-tree-shake-icons

이 명령을 수행하라고 한다.

Execution failed for task ':app:compileFlutterBuildRelease'. · Issue #64334 · flutter/flutter · GitHub

 

Execution failed for task ':app:compileFlutterBuildRelease'. · Issue #64334 · flutter/flutter

aldairespinosa@Aldairs-MacBook-Air android % flutter build apk --split-per-abi Changing current working directory to: /Users/aldairespinosa/Desktop/GouVai/GouVai/GouVai Running Gradle task 'ass...

github.com

 

여차여차하여 위의 명령을 실행하니 모든 문제가 해결되었다.

드디어 마음의 평화가 찾아왔다. 다행이다..