728x90
에러 로그
FAILURE: Build failed with an exception.
* Where:
Build file '/Users/i-bong/development/flutter_project/fearless_plus/android/app/build.gradle' line: 74
* What went wrong:
A problem occurred evaluating project ':app'.
> path may not be null or empty string. path='null'
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
해결방법
프로젝트
android/app/build.gradle
주석처리
// signingConfigs {
// release {
// keyAlias keystoreProperties['keyAlias']
// keyPassword keystoreProperties['keyPassword']
// storeFile file(keystoreProperties['storeFile'])
// storePassword keystoreProperties['storePassword']
// }
// }
// buildTypes {
// release {
// signingConfig signingConfigs.release
// }
// }
원인
git push시에 ignore로 인해 해당 파일이 누락되었다.
'컴퓨터 프로그래밍 > Flutter' 카테고리의 다른 글
플러터 여러 디바이스에서 결과물 미리보기 ( flutter_preview ) (0) | 2022.04.24 |
---|---|
[Flutter] 커머스 서비스 제작 6개월 짧은 회고... (0) | 2021.12.21 |
[Flutter] 플러터 작업 환경 셋팅 (macOS install) (0) | 2021.07.19 |
[Flutter] 나의 첫 플러터 앱 - 피어레스 플러스 (2) | 2021.07.13 |
[Flutter] PlatformChannel ( 플러터 채널 안드로이드 ) - 플러터 디바이스 정보 구하기 (4) | 2021.07.11 |