Skip to content

Conversation

@99mini
Copy link
Member

@99mini 99mini commented Aug 27, 2025

#️⃣연관된 이슈

📝작업 내용

스크린샷 (선택)

💬리뷰 요구사항(선택)

@99mini 99mini requested a review from l-lyun August 27, 2025 12:04
Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Summary of Changes

Hello @99mini, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

이 PR은 애플리케이션의 버전 정보를 업데이트하여 v1.1.3 릴리스를 준비합니다. 안드로이드, iOS, 그리고 프로젝트의 package.json 파일에 걸쳐 버전 번호가 일관되게 조정되었습니다.

Highlights

  • 안드로이드 앱 버전 업데이트: android/app/build.gradle 파일에서 versionCode를 33에서 34로, versionName을 "1.1.2.4"에서 "1.1.3"으로 변경했습니다.
  • iOS 앱 버전 업데이트: ios/ClientApp.xcodeproj/project.pbxproj 파일에서 CURRENT_PROJECT_VERSION을 5에서 1로, MARKETING_VERSION을 "1.1.2"에서 "1.1.3"으로 변경했습니다. 또한 ios/ClientApp/Info.plist와 ios/ClientAppTests/Info.plist에서 CFBundleVersion을 12에서 1로 업데이트했습니다.
  • package.json 버전 업데이트: 프로젝트의 package.json 파일에서 version을 "1.1.2"에서 "1.1.3"으로 변경했습니다.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in issue comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

v1.1.3 릴리즈를 위한 버전 업데이트 PR이네요. Android, iOS, package.json의 버전이 일관되게 업데이트된 점은 좋습니다. 다만 몇 가지 개선점을 제안합니다.

가장 중요한 점은 iOS 빌드 번호를 1로 재설정하는 부분입니다. 이는 App Store 제출 시 빌드가 거부될 수 있는 위험이 있으므로, 자동으로 증가하도록 관리하는 것이 안전합니다.

또한, Android의 build.gradle 파일에 남아있는 TODO 주석을 제거하여 코드를 더 깔끔하게 유지하는 것을 제안합니다.

자세한 내용은 각 파일에 남긴 코멘트를 확인해주세요.

CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = ClientApp/ClientApp.entitlements;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 1;

Choose a reason for hiding this comment

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

high

CURRENT_PROJECT_VERSION (빌드 번호)를 1로 재설정하고 있습니다. App Store Connect는 동일한 마케팅 버전에 대해 이전에 업로드된 빌드보다 높은 빌드 번호를 요구합니다. 따라서 빌드 번호를 수동으로 재설정하면 App Store에 빌드를 제출할 때 거부될 수 있습니다.

fastlaneincrement_build_number를 사용하고 계신 것으로 보이는데, 이 값을 소스 코드에 커밋하기보다는 CI/CD 파이프라인에서 동적으로 관리하여 각 빌드마다 자동으로 증가시키는 것이 더 안전하고 일반적인 방법입니다. 현재 방식은 수동 작업으로 인한 실수를 유발할 수 있습니다.

</array>
<key>CFBundleVersion</key>
<string>12</string>
<string>1</string>

Choose a reason for hiding this comment

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

high

이 값을 $(CURRENT_PROJECT_VERSION)으로 설정하여 프로젝트 설정과 동기화하는 것이 좋습니다. 이렇게 하면 fastlaneincrement_build_number와 같은 자동화 도구가 빌드 번호를 중앙에서 관리할 수 있게 되어 버전 관리의 일관성을 높이고 수동 오류를 줄일 수 있습니다. project.pbxproj 파일에 남긴 관련 코멘트도 참고해주세요.

	<string>$(CURRENT_PROJECT_VERSION)</string>

Comment on lines 93 to 94
versionCode 34 // TODO: update version code
versionName "1.1.3" // TODO: update version name

Choose a reason for hiding this comment

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

medium

버전 코드와 이름이 올바르게 업데이트되었습니다. 다만, 관련 // TODO 주석이 아직 남아있습니다. 작업이 완료되었으므로 이 주석들을 제거하여 코드를 깔끔하게 유지하고, 다른 개발자들이 혼동하지 않도록 하는 것이 좋습니다.

        versionCode 34
        versionName "1.1.3"

<string>????</string>
<key>CFBundleVersion</key>
<string>12</string>
<string>1</string>

Choose a reason for hiding this comment

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

medium

테스트 타겟의 CFBundleVersion1로 재설정되었습니다. 메인 앱 타겟과 마찬가지로, 이 값도 $(CURRENT_PROJECT_VERSION)을 사용해 프로젝트 설정과 동기화하는 것을 권장합니다. 일관성을 유지하고 수동 변경으로 인한 실수를 줄일 수 있습니다.

	<string>$(CURRENT_PROJECT_VERSION)</string>

@99mini 99mini merged commit 9f71898 into main Oct 27, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants