Flutter release APK 추출 및 appBundle 사용 시 - app:uploadCrashlyticsMappingFileRelease - 에러에 대한 솔루션

Chance·2024년 7월 29일

에러코드

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:uploadCrashlyticsMappingFileRelease'.
> Host name may not be empty

* 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

app\build.gradle에서 수정

    buildTypes {
          debug {
              ...
          }
          release {
        	  ...
              
            // Execution failed for task ':app:uploadCrashlyticsMappingFileRelease'.
            // > Host name may not be empty
            
            firebaseCrashlytics {
                mappingFileUploadEnabled false
            }
        }
    }

0개의 댓글