관리 메뉴

웹개발자의 기지개

[안드로이드] APK 파일생성시 Execution failed for task ':app:lintVitalRelease'. 에러날때 본문

안드로이드

[안드로이드] APK 파일생성시 Execution failed for task ':app:lintVitalRelease'. 에러날때

http://portfolio.wonpaper.net 2023. 4. 19. 01:20

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

 

위와 같이 APK 생성할때 오류 메세지 발생했다.

 

Build.gradle(앱) 에서 아래 소스를 추가한다.

 

1
2
3
4
5
6
7
8
9
android{
 
    
  lintOptions {
    checkReleaseBuilds false
    abortOnError false
  }
 
}
cs

그리고, Sync 하고 다시  APK 생성한다.

 

참고 : https://minchanyoun.tistory.com/46

 

 

 

Comments