From d6b3034235684fd4c3b16d98220a3595b7da1957 Mon Sep 17 00:00:00 2001 From: Nedifinita Date: Tue, 15 Jul 2025 14:51:01 +0800 Subject: [PATCH] fix: update deprecated lintOptions to lint configuration --- app/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 439595e..5472992 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -51,8 +51,8 @@ android { buildFeatures { compose = true } - lintOptions { - disable("NullSafeMutableLiveData") + lint { + disable += "NullSafeMutableLiveData" } }