Raise deployment target to 10.13 so it builds on current Xcode#37
Open
deluair wants to merge 1 commit into
Open
Raise deployment target to 10.13 so it builds on current Xcode#37deluair wants to merge 1 commit into
deluair wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates the project's macOS deployment target and refreshes CocoaPods metadata.
Changes:
- Bumps
MACOSX_DEPLOYMENT_TARGETfrom 10.7 to 10.13 across all build configurations. - Updates CocoaPods version to 1.16.2 in the Podfile.lock.
- Updates the spec repo URL casing to
https://github.com/CocoaPods/Specs.git.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| Podfile.lock | Updates CocoaPods version and spec repo URL. |
| AvroKeyboard.xcodeproj/project.pbxproj | Raises macOS deployment target to 10.13 in all four build settings blocks. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Xcode 15+ (and Xcode 26) reject MACOSX_DEPLOYMENT_TARGET = 10.7 with 'the range of supported deployment target versions is 10.13 to ...', so the project no longer builds out of the box. 10.13 is the lowest value current Xcode accepts, keeping backward compatibility as wide as possible. No other changes; builds a universal arm64 + x86_64 binary. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
deluair
force-pushed
the
fix/build-on-current-xcode
branch
from
May 29, 2026 02:11
94b0313 to
1dd5a2a
Compare
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.
Thanks for iAvro. On current Xcode the project does not build out of the box:
This raises
MACOSX_DEPLOYMENT_TARGETfrom 10.7 to 10.13 (the lowest valuecurrent Xcode accepts) in all four build configurations. No other changes.
Verification
On macOS 26.5, Apple Silicon (MacBook Air M5), Xcode 26:
pod install, thenxcodebuild -workspace "AvroKeyboard.xcworkspace" -scheme "Avro Keyboard" -configuration Releasesucceeds.arm64 + x86_64binary (no Rosetta on Apple Silicon).space commit, and arrow-key candidate selection (with the panel highlight
moving) all work. The existing
moveDown:/moveUp:candidate navigationstill functions correctly on current macOS.
Note for anyone building this: RegexKitLite 4.0 is published over SVN, so
pod installneedssvnavailable (brew install subversion). That is aCocoaPods/pod-source detail, not changed here.