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 @@ -23,8 +23,8 @@ android {
applicationId = "com.eatssu.android"
minSdk = 28
targetSdk = 35
versionCode = 40
versionName = "3.1.2"
versionCode = 41
versionName = "3.1.3"
Comment on lines +26 to +27
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

versionCodeversionNamebuild.gradle.kts에 직접 하드코딩하는 대신, gradle.properties 파일로 분리하여 관리하는 것을 고려해 보세요. 이미 다른 설정 값들에 대해 local.properties를 사용하고 계신 것처럼, 버전 정보도 중앙에서 관리하면 유지보수성이 향상되고 CI/CD 파이프라인에서 버전을 제어하기 용이해집니다.


testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Loading