Android

Lint found fatal errors while assembling a release target. 임시 해결

꼬장e 2023. 10. 11. 16:49

build.gradle 파일에 아래의 옵션을 추가한다.

android {
    lintOptions {
        checkReleaseBuilds false
        // Or, if you prefer, you can continue to check for errors in release builds,
        // but continue the build even when errors are found:
        abortOnError false
    }