[CHORE] Android release 빌드 보안 강화(#352) - #354
Open
jeonbinggu wants to merge 1 commit into
Open
Conversation
Contributor
|
Caution The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased. |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
🔀 Pull Request Title
chore: Android release 빌드 보안 강화 - minify/gitignore(#352)
🎞️ 주요 코드 설명
android/app/build.gradle
minifyEnabled true,shrinkResources true추가 (기존엔 꺼져 있어서 R8 난독화/리소스 축소 없이 배포되던 상태)android/.gitignore
google-services.jsongitignore 처리 (기존엔 주석 처리돼 있어 실수로 커밋될 수 있는 상태였음)📌 PR 설명
이번 PR에서 어떤 작업을 했는지 요약해주세요.
gradlew assembleRelease성공 확인 — R8 포함 unsigned release APK 정상 생성 (컴파일 타임 검증)google-services.json의 Firebase API 키가com.finders패키지명 + release 서명 SHA-1로 제한돼 있는지 콘솔 접근 권한이 없어 확인 못 함 — 직접 확인 필요.📷 스크린샷
UI 변경 없음 (생략)