From 8f7106d114b27688186cae5c8fe24d372d62d594 Mon Sep 17 00:00:00 2001 From: unam Date: Thu, 20 Jun 2024 22:47:51 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20=EC=82=AC=EC=9D=B4=EB=8B=9D=20=EC=98=B5?= =?UTF-8?q?=EC=85=98=20=EC=A3=BC=EC=84=9D=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/build.gradle | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 2588be29..7099d33f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -44,21 +44,21 @@ android { buildConfigField "String", "KAKAO_CHANNEL_ID", properties["KAKAO_CHANNEL_ID"] } - signingConfigs { - release { - // local.properties에서 키 정보 불러오기 - def localProperties = new Properties() - def localPropertiesFile = rootProject.file('local.properties') - if (localPropertiesFile.exists()) { - localProperties.load(new FileInputStream(localPropertiesFile)) - } - - keyAlias localProperties['KEY_ALIAS'] - keyPassword localProperties['KEY_PASSWORD'] - storeFile file('RunnectKeystore.jks') //app/ 경로 생략 - storePassword localProperties['KEYSTORE_PASSWORD'] - } - } +// signingConfigs { +// release { +// // local.properties에서 키 정보 불러오기 +// def localProperties = new Properties() +// def localPropertiesFile = rootProject.file('local.properties') +// if (localPropertiesFile.exists()) { +// localProperties.load(new FileInputStream(localPropertiesFile)) +// } +// +// keyAlias localProperties['KEY_ALIAS'] +// keyPassword localProperties['KEY_PASSWORD'] +// storeFile file('RunnectKeystore.jks') //app/ 경로 생략 +// storePassword localProperties['KEYSTORE_PASSWORD'] +// } +// } buildFeatures { buildConfig = true @@ -68,7 +68,7 @@ android { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' - signingConfig signingConfigs.release +// signingConfig signingConfigs.release } }