fix(sdk): revert SkiaSharp 3.119.4 -> 3.119.2 for 6.6 stable (iOS <26.2 breakage)#2158
Merged
agneszitte merged 1 commit intoJul 10, 2026
Merged
Conversation
The SkiaSharp 3.119.4 bump (6.6.12) ships Apple assets targeting iOS 26.2, which are incompatible with iOS <26.2 (Xcode <26.2) builds -> NuGet falls back to the platform-neutral net10.0 assembly with no native libSkiaSharp binding, breaking iOS apps (runtime DllNotFound / MT0099 / NU1605). Revert to 3.119.2 (the last iOS-safe version, as shipped by public Uno.Sdk 6.5.36) until the SkiaSharp 3.119.5 backport (mono/SkiaSharp#3798) or the v4 move in 7.0. Related to unoplatform/uno#23680 Related to unoplatform/uno.chefs#1750 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
ajpinedam
approved these changes
Jul 10, 2026
This was referenced Jul 10, 2026
This was referenced Jul 18, 2026
This was referenced Jul 20, 2026
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.
What & why
Reverts the SkiaSharp
3.119.4→3.119.2pin in the Uno.Sdk for the 6.6 stable line. The3.119.4bump (introduced in Uno.Sdk 6.6.12 via #2106) ships its Apple platform assets targeting iOS 26.2 (net10.0-ios26.2), which are incompatible with iOS < 26.2 (Xcode < 26.2) builds → NuGet falls back to the platform-neutralnet10.0SkiaSharp assembly, which has no nativelibSkiaSharpbinding → iOS apps break:System.DllNotFoundException: libSkiaSharp/ black screen (Chefs doesn't launch when built for net10.0-ios uno.chefs#1750)MT0099; canaries pinning lower →NU16053.119.2is the last iOS-safe SkiaSharp and the version shipped by the current public Uno.Sdk 6.5.36, so this keeps 6.6 consistent with the last public release. Confirmed working on the failing iOS repro (Chefs, Xcode 26.1.1) via<SkiaSharpVersion>3.119.2</SkiaSharpVersion>.Changes
src/Uno.Sdk/packages.json: SkiaSharp group3.119.4→3.119.2src/Uno.Sdk/ReadMe.md: regenerated version table + embedded manifestNotes
Related to unoplatform/uno#23680
Related to unoplatform/uno.chefs#1750
Related to https://github.com/unoplatform/uno-private/issues/1957#issuecomment-4938024224
(Related to https://github.com/unoplatform/private/issues/1076)