본문 바로가기

개발하면서

Lint found fatal errors while assembling a release target

반응형



Lint found fatal errors while assembling a release target

To proceed, either fix the issues identified by lint, or modify your build script as follow


android {

lintOptions {

checkReleaseBuilds false

}

}




app -> build.gradle에 해당 옵션 추가

intOptions {
checkReleaseBuilds false
}




반응형