-
Notifications
You must be signed in to change notification settings - Fork 377
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
No images fail to apear only in realease mode (Android) #1325
Comments
I have the same issue. I tried to add linkerpleaseinclude, but it doesn't help..... |
I have the same issue I get following output: I think this is related to following issue on Xamarin android: it works on another build machine with Xamarin android version 9.2.3.0 and visual studio for Mac 8.0.8 It fails on Xamarin android version 9.4.0.51 and visual studio for Mac 8.2 |
I have the same issue. |
Any news? I have this problem on android 5.1 |
I also experiencing the same issue. However, this problem only exists in devices running API 21 or below. There's one more interesting thing I observed that dll named as libraryjnigraphics.so fails. |
I'm experiencing the same issue. My APK is built targeting Android 9.0 and supporting "armeabi-v7a;arm64-v8a". My customers get a libjnigraphics.so exception on Android 6.0 (Marshmallow) devices when the app tries to use some image-related functions. My developer setup is:
2 weeks ago, I was using Visual Studio 2017, targeting Android 8.0 devices and supporting only "armeabi-v7a". The same project worked fine on Android 6.0 devices. I'm suspecting it has someting to do with "arm64-v8a". |
Same issue here. Only happens in release-mode on an Android 5.1.1 device (Samsung T-280)
This issue does not reproduce if the APK is built with:
I'm guessing that this is more a Xamarin.Android issue than a FFImageLoading issue. |
I had the same issue on Android 6 and under, on release mode only.
I agree with @dsarbut that this is likely a Xamarin.Android issue. I solved this with updating Xamarin.Android from 9.4 to Commercial Xamarin.Android 10.0 (d16-3) Preview which you can get from https://github.com/xamarin/xamarin-android/blob/master/README.md. After updating, SVG images are shown as they do in debug mode. |
Description
Images (SVG) don't show when compiling Release. No problem when in debug mode.
After some testing it seems that it only fails in Visual Studio 2019 while in 2017 works fine.
Steps to Reproduce
Xamarin.Forms 4.1.0.6.18606
Xamarin.FFImageLoading.* 2.4.11.982
Release config:
PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
DebugSymbols>true
DebugType>pdbonly
Optimize>true
OutputPath>bin\Release
ErrorReport>prompt
WarningLevel>4
AndroidManagedSymbols>true
AndroidUseSharedRuntime>false
AndroidEnableMultiDex>true
AndroidSupportedAbis>armeabi-v7a;arm64-v8a
Initialization
Xamarin.Forms.Forms.SetFlags("FastRenderers_Experimental");
var config = new FFImageLoading.Config.Configuration()
{
VerboseLogging = false,
VerbosePerformanceLogging = false,
VerboseMemoryCacheLogging = false,
VerboseLoadingCancelledLogging = false,
Logger = new CustomLogger(),
HttpHeadersTimeout=60,
HttpReadTimeout=60,
};
Expected Behavior
Images should show like in debug mode
Actual Behavior
Images don't show
Basic Information
Screenshots
Reproduction Link / Code
The text was updated successfully, but these errors were encountered: