From d50b502152d0e56ae19a8164513c5f10b197cca2 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" } }