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:
@@ -38,6 +38,9 @@ android {
|
|||||||
compose = true
|
compose = true
|
||||||
buildConfig = true
|
buildConfig = true
|
||||||
}
|
}
|
||||||
|
lint {
|
||||||
|
disable += "NullSafeMutableLiveData"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|||||||
Reference in New Issue
Block a user