Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ android {
applicationId "com.ummgoban.momchanpick"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 33 // TODO: update version code
versionName "1.1.2.4" // TODO: update version name
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"

resValue "string", "NAVER_MAP_CLIENT_ID", project.env.get("NAVER_MAP_CLIENT_ID") ?: ""
resValue "string", "build_config_package", "com.ummgoban.momchanpick"
}
Expand Down
8 changes: 4 additions & 4 deletions ios/ClientApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@
BUNDLE_IDENTIFIER = "";
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 파이프라인에서 동적으로 관리하여 각 빌드마다 자동으로 증가시키는 것이 더 안전하고 일반적인 방법입니다. 현재 방식은 수동 작업으로 인한 실수를 유발할 수 있습니다.

DEVELOPMENT_TEAM = 3P5SZ6DAC9;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = ClientApp/Info.plist;
Expand All @@ -586,7 +586,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1.2;
MARKETING_VERSION = 1.1.3;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand All @@ -609,15 +609,15 @@
BUNDLE_IDENTIFIER = "";
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = ClientApp/ClientApp.entitlements;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = 3P5SZ6DAC9;
INFOPLIST_FILE = ClientApp/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = "맘찬픽";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1.2;
MARKETING_VERSION = 1.1.3;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down
2 changes: 1 addition & 1 deletion ios/ClientApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</dict>
</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>

<key>KAKAO_APP_KEY</key>
<string>$(KAKAO_KEY)</string>
<key>LSApplicationQueriesSchemes</key>
Expand Down
2 changes: 1 addition & 1 deletion ios/ClientAppTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
<key>CFBundleSignature</key>
<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>

</dict>
</plist>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ClientApp",
"version": "1.1.2",
"version": "1.1.3",
"private": true,
"scripts": {
"android": "cp .env.development .env && npx react-native run-android",
Expand Down