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 파일 생성
'🖥 Programming > 📱 Android (Java)' 카테고리의 다른 글
[Android] WebView FileDownload시 .bin 파일확장자 버그 해결방법 (0) | 2022.07.06 |
---|---|
[Android] TabLayout(탭 레이아웃) Tab 1개 VISIBLE / GONE 처리 (0) | 2021.10.18 |
[Android] 토스트 메시지(Toast Message) 중복 생성 방지 (0) | 2021.10.14 |
[Android] TabLayout에서 tabRippleColor 설정방법 (탭 클릭 색상) (0) | 2021.10.07 |
[Android] TabLayout에 Viewpager연결하기 (0) | 2021.10.05 |
[Android] Dialog Method 정리 (0) | 2021.09.28 |
[android] Task 'assembleDebug' not found in project ':app'. 문제해결 (0) | 2021.09.27 |
[Android] Dialog 외부 터치 금지 (바깥 터치 금지) (0) | 2021.09.16 |