chore: iOS 마케팅 버전을 1.2.0으로 올림 - #209
Conversation
app.config.js의 version만 1.2.0으로 올렸지만 반영되지 않았다. ios/ 디렉토리가 있는 bare 프로젝트라 EAS Build가 app.config.js가 아니라 네이티브 프로젝트의 값을 쓴다. Specified value for "ios.bundleIdentifier" in app.config.js is ignored because an ios directory was detected in the project. Xcode 프로젝트의 MARKETING_VERSION(Debug/Release 2곳)을 1.2.0으로 올린다. Info.plist의 CFBundleShortVersionString은 $(MARKETING_VERSION)을 참조하므로 함께 반영된다. 빌드 번호는 eas.json의 appVersionSource: "remote" + autoIncrement로 EAS가 계속 관리한다.
|
Important Review skippedReview was skipped due to path filters ⛔ Files ignored due to path filters (1)
CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Team Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
app.config.js의 version만 1.2.0으로 올렸지만 반영되지 않았다.
ios/ 디렉토리가 있는 bare 프로젝트라 EAS Build가 app.config.js가 아니라 네이티브 프로젝트의 값을 쓴다.
Specified value for "ios.bundleIdentifier" in app.config.js is ignored
because an ios directory was detected in the project.
Xcode 프로젝트의 MARKETING_VERSION(Debug/Release 2곳)을 1.2.0으로 올린다. Info.plist의 CFBundleShortVersionString은 $(MARKETING_VERSION)을 참조하므로 함께 반영된다.
빌드 번호는 eas.json의 appVersionSource: "remote" + autoIncrement로 EAS가 계속 관리한다.