Skip to content

Commit

Permalink
[fix] 사이닝 옵션 주석 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
unam98 committed Jun 20, 2024
1 parent f8525c2 commit 8f7106d
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -68,7 +68,7 @@ android {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
// signingConfig signingConfigs.release
}
}

Expand Down

0 comments on commit 8f7106d

Please sign in to comment.