You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building a .net MAUI project with Skia gives these warnings
NuGet package 'SkiaSharp.NativeAssets.Android' version '3.0.0-preview.3.1' contains a shared library 'libSkiaSharp.so' which is not correctly aligned. See https://developer.android.com/guide/practices/page-sizes for more details
Describe the solution you would like
Alignment issues solved for .net 9
Describe alternatives you have considered
It's not ab locking issue, since it can compile, just to leave this into consideration
Additional context
No response
Code of Conduct
I agree to follow this project's Code of Conduct
The text was updated successfully, but these errors were encountered:
Is there some compiler/linker flag? If this is a Google requirement, then I am sure the latest skia code will have it somewhere and I could find it with a code search and backport.
Is there some compiler/linker flag? If this is a Google requirement, then I am sure the latest skia code will have it somewhere and I could find it with a code search and backport.
If building with the NDK r28 (not yet released), the 16k alignment would be enabled automatically. With older NDK versions, one has to pass the -Wl,-z,max-page-size=16384 flag to the compiler when linking (or -z max-page-size=16384 when invoking the linker directly)
Is your feature request related to a problem?
Building a .net MAUI project with Skia gives these warnings
Describe the solution you would like
Alignment issues solved for .net 9
Describe alternatives you have considered
It's not ab locking issue, since it can compile, just to leave this into consideration
Additional context
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: