Update XCode to 26.2, MacOS SDK to 26.2, iOS SDK to 26.2 - #822
Merged
Conversation
Summary - Extender code coverage reportSummary
Coveragecom/defold/extender - 26%
com/defold/extender/builders - 0%
com/defold/extender/cache - 35.4%
com/defold/extender/cache/info - 100%
com/defold/extender/log - 0%
com/defold/extender/metrics - 7.4%
com/defold/extender/process - 10.4%
com/defold/extender/remote - 4.9%
com/defold/extender/services - 33.7%
com/defold/extender/services/cocoapods - 50.6%
com/defold/extender/services/data - 80.7%
com/defold/extender/tracing - 18.7%
com/defold/extender/utils - 0%
|
AGulev
commented
Dec 3, 2025
| MACOS_15_VERSION=15.2 | ||
| IOS_18_VERSION=18.2 | ||
| SWIFT_6_2_VERSION=6.2 | ||
| IOS_26_VERSION_MIN=15.0 |
Contributor
Author
There was a problem hiding this comment.
min version changed, so we need it in a separate variable now
| // A configuration meant for consumers that need the API of this component | ||
| implementation { | ||
| canBeResolved = true | ||
| } |
Contributor
Author
There was a problem hiding this comment.
We don't iterate over implementation artifacts directly, so we don't need it here (it's not supported in new Gradle, so it's easier to just remove it)
| implementationResolved { | ||
| canBeResolved = true | ||
| canBeConsumed = false | ||
| extendsFrom implementation |
Contributor
Author
There was a problem hiding this comment.
here we iterate over artifacts, so it's reimplemented gradle 9 way
| version project.ext.extenderVersion | ||
| groupId = 'com.defold.extender' | ||
| artifactId = 'server' | ||
| version = project.ext.extenderVersion |
Contributor
Author
There was a problem hiding this comment.
syntax changes for new gradle
ekharkunov
approved these changes
Dec 4, 2025
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.
Build toolchain updated with:
Also, updated gradle to 9.1.0
Related defold/defold#11563