fix: iOS만 선택해도 동시빌드 설정 시 Android까지 빌드되는 문제 - #36
Merged
Conversation
동시빌드 분기가 BUILD_ANDROID/BUILD_IOS 플래그를 확인하지 않고 build_android와 build_ios를 무조건 둘 다 호출했음. 순차빌드 분기는 플래그를 확인하는데 동시빌드 분기만 누락되어, 저장된 .build_prefs에 동시빌드=true가 있으면 단일 플랫폼 선택 시에도 양쪽이 빌드됨. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
kimdzhekhon
added a commit
that referenced
this pull request
Jul 29, 2026
* fix: iOS만 선택해도 동시빌드 설정 시 Android까지 빌드되는 문제 수정 동시빌드 분기가 BUILD_ANDROID/BUILD_IOS 플래그를 확인하지 않고 build_android와 build_ios를 무조건 둘 다 호출했음. 순차빌드 분기는 플래그를 확인하는데 동시빌드 분기만 누락되어, 저장된 .build_prefs에 동시빌드=true가 있으면 단일 플랫폼 선택 시에도 양쪽이 빌드됨. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * chore: trigger CI Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * chore: retrigger CI after re-enabling Validate workflow Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * chore: regenerate update-manifest.txt for build-flutter.sh fix Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> --------- Co-authored-by: Kim Jaehyun <231584193+kimdzhekhon@users.noreply.github.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
kimdzhekhon
added a commit
that referenced
this pull request
Jul 29, 2026
* fix: iOS만 선택해도 동시빌드 설정 시 Android까지 빌드되는 문제 수정 동시빌드 분기가 BUILD_ANDROID/BUILD_IOS 플래그를 확인하지 않고 build_android와 build_ios를 무조건 둘 다 호출했음. 순차빌드 분기는 플래그를 확인하는데 동시빌드 분기만 누락되어, 저장된 .build_prefs에 동시빌드=true가 있으면 단일 플랫폼 선택 시에도 양쪽이 빌드됨. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * chore: trigger CI Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * chore: retrigger CI after re-enabling Validate workflow Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * chore: regenerate update-manifest.txt for build-flutter.sh fix Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> --------- Co-authored-by: Kim Jaehyun <231584193+kimdzhekhon@users.noreply.github.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
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.
Summary
build-flutter.sh)가BUILD_ANDROID/BUILD_IOS플래그를 확인하지 않고build_android,build_ios를 무조건 둘 다 호출하던 버그 수정.build_prefs에 동시빌드=true가 저장돼 있으면 iOS만(또는 Android만) 선택해도 양쪽이 빌드됨Test plan