본문 바로가기
🖥 Programming/📱 Android (Java)

[Android] APK파일 생성시 Execution failed for task ':app:lintVitalRelease'. 오류

by MinChan-Youn 2021. 10. 22.

AndroidStudio에서 APK파일을 생성하다가 보면 다음과 같은 오류가 나타날 때가 있다.

Execution failed for task ':app:lintVitalRelease'.
> Lint found fatal errors while assembling a release target.

* 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.

 

 

무엇을 따로 설정한 것이 없는데 언제부턴가…. 이런 오류가 발생해서 잘못된 것이 아닌가 생각했다. ㅋㅋ
문제를 만났으니 해결 방법을 알아보도록 하자. 참고로 문제 해결 방법은 간단하다.

 

* 해결방법

  • Step 1. Build.gradle(:app)파일에서 다음 구문을 추가
android{
...
    
  lintOptions {
    checkReleaseBuilds false
    abortOnError false
  }
  
...
}

 

  • Step 2. 구문을 작성하면 위에 파란 띠로 "Gradle files have changed since last project sync. A project sync may be necessary for the IDE to work properly." 문구 우측에 "Sync Now" 클릭

 

  • Step 3. APK 파일 생성