-
-
Notifications
You must be signed in to change notification settings - Fork 425
DllNotFoundException on MAUI net8.0-android #1818
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
As mentioned in #22 there is no support for running this library on android. |
Is that because there is no official build of native Magick library for this OS? There is an unofficial Android build which is synced to main repo. |
That is not a build of the Magick.Native library but a custom build of ImageMagick. |
I got you point. Just curious: there is a technical limitation to make an Android version of the Magick.Native library or it's just a lack of time? |
Maybe both? I haven't invested any time in making the build work on android or ios. |
Magick.NET version
Magick.NET-Q8-AnyCPU 14.6.0
Environment (Operating system, version and so on)
Windows 10 x64 22H2 + Android Emulator (default virtual device - Pixel 7 API 35) + VS 2022 17.13.5
Description
I've created a netstandard20 class library and added
Magick.NET-Q8-AnyCPU 14.6.0
nuget reference to it. In it I simply open image via:using var image = new MagickImage(new FileInfo(imagePath));
And I've created MAUI application from a template (.NET 8.0 framework), referenced my class library and called that method. And i got an exception:
Running same MAUI application on Windows (net8.0-windows10.0.19041.0 target) is ok. Looks like it's Android specific.
Steps to Reproduce
Magick.NET-Q8-AnyCPU 14.6.0
nuget referenceusing var image = new MagickImage(new FileInfo(imagePath));
Images
The text was updated successfully, but these errors were encountered: