fix: disable NullSafeMutableLiveData lint check crashing release builds

The lintVitalAnalyzeRelease task fails with an IncompatibleClassChangeError
in NonNullableMutableLiveDataDetector, which is a known bug in the lint
library. Disabling this specific check unblocks release APK builds.

Made-with: Cursor
This commit is contained in:
cottongin
2026-03-11 16:09:22 -04:00
parent a3a00582a0
commit e1286911cc

View File

@@ -38,6 +38,9 @@ android {
compose = true
buildConfig = true
}
lint {
disable += "NullSafeMutableLiveData"
}
}
dependencies {