Update dependencies & compile sdk#73
Merged
Merged
Conversation
added 2 commits
May 15, 2026 00:42
magic-cucumber
self-requested a review
May 15, 2026 14:42
Owner
magic-cucumber
previously requested changes
May 22, 2026
Owner
# Conflicts: # composeApp/build.gradle.kts # gradle.properties # lib/epub/build.gradle.kts # lib/file-picker/build.gradle.kts # lib/gif/build.gradle.kts # lib/multiplatform-serializer-fix/build.gradle.kts # lib/okio-enhancement-util/build.gradle.kts
Collaborator
Author
|
怎么还是不好使的 |
Owner
|
应该要删构建缓存 但是kotlin.native.cache=none被弃用了好像 |
Owner
|
iOS我来吧 |
magic-cucumber
marked this pull request as ready for review
July 2, 2026 06:14
magic-cucumber
marked this pull request as draft
July 2, 2026 07:26
Owner
|
愚蠢的JB使用了这样的编译期验证,但是maven仓库上面的元数据是xcode26.2 sdk #if defined(__IPHONE_26_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_26_0
// Starting iOS 26, UIKit exposes `UIViewLayoutRegion`s (e.g. safe area / margins with corner
// adaptation) which are needed to properly adopt iOS 26 macOS-like system controls.
//
// However, iOS 26.0 has a bug that can add spurious horizontal insets when using layout
// regions. This affects both iPhone and iPad.
//
// - iOS 26.1+: use layout regions everywhere (bug fixed).
// - iOS 26.0 iPhone: fall back to pre-iOS-26 insets to avoid unexpected horizontal shifts.
// - iOS 26.0 iPad: keep layout regions despite the horizontal insets in favor of correct insets
// for the new navigation elements.
if (@available(iOS 26.1, *)) {
return [self edgeInsetsForLayoutRegionInView: view];
}
if (@available(iOS 26.0, *)) {
if (UIDevice.currentDevice.userInterfaceIdiom == UIUserInterfaceIdiomPad) {
return [self edgeInsetsForLayoutRegionInView: view];
}
}
#endif
return [self edgeInsetsFallbackInView: view];
} |
magic-cucumber
marked this pull request as ready for review
July 20, 2026 07:28
magic-cucumber
self-requested a review
July 20, 2026 12:43
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.

No description provided.