From 912518c1ae4b8400557758b42e5562e345cc669f Mon Sep 17 00:00:00 2001 From: klaus Date: Wed, 22 Oct 2025 16:33:46 +0900 Subject: [PATCH] =?UTF-8?q?refactor(config):=20buildConfig=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EC=9C=84=EC=B9=98=20=EA=B6=8C=EC=9E=A5=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EC=9C=84=EC=B9=98=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 기존: gradle.properties android.defaults.buildfeatures.buildconfig=true - 변경: build.gradle buildFeatures { buildConfig = true } --- app/build.gradle | 1 + gradle.properties | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 76ce89d3..a9ff51d1 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -21,6 +21,7 @@ android { buildFeatures { dataBinding true + buildConfig true } dependenciesInfo { diff --git a/gradle.properties b/gradle.properties index edff29cf..a4dc791e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,6 +22,5 @@ kotlin.code.style=official # thereby reducing the size of the R class for that library org.gradle.configuration-cache=false android.nonTransitiveRClass=true -android.defaults.buildfeatures.buildconfig=true android.enableJetifier=true android.nonFinalResIds=false