문제 : 안드로이드 에뮬레이터에서 플러터 앱을 실행시키려고 하는데 Running Gradle task 'assembleDebug'... " 에서 멈추고 더이상 진행이 되지 않았다.
해결 : 스택오버플로우에 올라와 있는 답변을 통해 간단히 해결하였다.
참고 : https://stackoverflow.com/questions/59516408/flutter-app-stuck-at-running-gradle-task-assembledebug
- Open your flutter Project directory.
- Change directory to android directory in your flutter project directory cd android
- clean gradle ./gradlew clean
- Build gradle ./gradlew build or you can combine both commands with just ./gradlew clean build
터미널에서 플러터 프로젝트 디렉토리로 이동 => android 폴더로 이동. => ./gradlew clean build 입력
'Flutter' 카테고리의 다른 글
Flutter 플러터 앱 출시 후 인터넷 안되는 경우 (에뮬레이터는 잘 됨) (0) | 2023.08.17 |
---|---|
Flutter 플러터 AlertDialog pop error 처리 (0) | 2023.07.30 |
Flutter 로그인 기능 구현 (JWT, Flutter Secure Storage) (0) | 2023.06.28 |
Flutter에서 WebRTC 사용하기(작성중) (0) | 2023.06.26 |
Flutter Error : Could not determine the dependencies of task (0) | 2023.06.13 |