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 = 23
targetSdk = 35
versionCode = 35
versionName = "2.1.15"
versionCode = 37
versionName = "3.0.0"
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.

critical

3.0.0 메이저 릴리즈를 준비하면서 빌드 설정을 최종 점검하는 것이 중요합니다. 현재 app/build.gradle.kts 파일에 릴리즈 품질에 영향을 줄 수 있는 몇 가지 설정이 있습니다:

  1. 코드 난독화 및 리소스 축소 비활성화: release 빌드에서 isMinifyEnabledisShrinkResourcesfalse로 설정되어 있습니다. 이는 앱 크기를 불필요하게 키우고 역공학에 취약하게 만듭니다. 프로덕션에서는 이들을 true로 설정하는 것이 강력히 권장됩니다.
  2. 베타 SDK 타겟팅: targetSdk가 35로 설정되어 있습니다. 이는 Android 15 베타 API 레벨입니다. 안정성을 위해 최신 안정 API 레벨(현재 34)을 타겟팅하는 것이 좋습니다.

이러한 설정들은 현재 변경 사항에 포함되어 있지는 않지만, 릴리즈 전에 검토하고 수정하는 것이 앱의 안정성과 보안에 큰 도움이 될 것입니다.


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