Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ android {
applicationId = "com.eatssu.android"
minSdk = 28
targetSdk = 35
versionCode = 54
versionCode = 57
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

버전 코드를 수동으로 관리하면 이번 PR에서 해결하려는 것과 같은 중복 문제가 다시 발생할 수 있습니다. 향후 이런 실수를 방지하기 위해 버전 관리를 자동화하는 것을 고려해 보세요.

예를 들어, gradle.propertiesversionCode를 저장하고 빌드 스크립트에서 이를 읽어오거나, CI/CD 파이프라인에서 빌드 번호를 기반으로 versionCode를 동적으로 설정하는 방법을 적용할 수 있습니다. 이렇게 하면 버전 충돌 위험을 줄이고 배포 프로세스를 더 안정적으로 만들 수 있습니다.

versionName = "3.2.3"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down Expand Up @@ -271,4 +271,4 @@ dependencies {

configurations.all {
exclude(group = "io.github.fornewid", module = "naver-map-location")
}
}