Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3.0.0 메이저 릴리즈를 준비하면서 빌드 설정을 최종 점검하는 것이 중요합니다. 현재
app/build.gradle.kts파일에 릴리즈 품질에 영향을 줄 수 있는 몇 가지 설정이 있습니다:release빌드에서isMinifyEnabled와isShrinkResources가false로 설정되어 있습니다. 이는 앱 크기를 불필요하게 키우고 역공학에 취약하게 만듭니다. 프로덕션에서는 이들을true로 설정하는 것이 강력히 권장됩니다.targetSdk가 35로 설정되어 있습니다. 이는 Android 15 베타 API 레벨입니다. 안정성을 위해 최신 안정 API 레벨(현재 34)을 타겟팅하는 것이 좋습니다.이러한 설정들은 현재 변경 사항에 포함되어 있지는 않지만, 릴리즈 전에 검토하고 수정하는 것이 앱의 안정성과 보안에 큰 도움이 될 것입니다.