From e1286911cc874f6907c800c726b731a3bb4df9cd Mon Sep 17 00:00:00 2001 From: cottongin Date: Wed, 11 Mar 2026 16:09:22 -0400 Subject: [PATCH] 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 --- app/build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index e2dfe38..4ed3934 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -38,6 +38,9 @@ android { compose = true buildConfig = true } + lint { + disable += "NullSafeMutableLiveData" + } } dependencies {