lint-baseline.xml Error 대처 방법
에러
APK를 만드는 과정에서 아래 오류가 발생했다.
Lint found fatal errors while assembling a release target.
Fix the issues identified by lint, or create a baseline to see only new errors:
android {
lint {
baseline = file("lint-baseline.xml")
}
}
For more details, see https://developer.android.com/studio/write/lint#snapshot
해결
해당 오류를 해결하기 위해선 gradle 파일에 아래 코드를 작성해준다.
build.gradle(:app)
android {
lintOptions {
// true(기본값)으로 설정하면 에러 발견시 빌드 중지
abortOnError false
baseline file("lint-baseline.xml")
}
Leave a comment