diff --git a/.circleci/config.yml b/.circleci/config.yml index bb21b15cd3..50452eff89 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,6 +8,7 @@ orbs: aws_cli_setup: &aws_cli_setup role-arn: $AWS_ROLE_ARN +# Keep xcode version in sync with `.fastlane/Fastfile` xcode_version: &xcode_version 15.2.0 iphone_name: &iphone_name iPhone SE (3rd generation) diff --git a/.fastlane/Fastfile b/.fastlane/Fastfile index 301bd91a5e..f499d67db2 100644 --- a/.fastlane/Fastfile +++ b/.fastlane/Fastfile @@ -232,7 +232,8 @@ platform :ios do end private_lane :xcode_check do - xcodes(version: "14.2", select_for_current_build_only: true) + # Keep xcode version in sync with `.circleci/config.yml` + xcodes(version: "15.2", select_for_current_build_only: true) end private_lane :build_the_app do |options|