Fresco java.lang.UnsatisfiedLinkError: dlopen failed: library "libnative-imagetranscoder.so" not found - Android Studio - Java

233 views Asked by At

Adding this did not solve my problem implementation("com.facebook.fresco:nativeimagetranscoder:3.0.0")

but this solved my problem with Android Studio with Java in gradle dependencies

implementation("com.facebook.fresco:nativeimagetranscoder") {
        version {
            strictly("2.6.0")
        }
    }

Did not now I should be including this lib

com.facebook.fresco:nativeimagetranscoder
2

There are 2 answers

0
Shashank Bhong On

We can use like

implementation("com.facebook.fresco:fresco:2.6.0")
0
steelrooter On

This issue was fixed in Fresco v3.1.3 released on Oct 25, 2023.

Please try using that instead: implementation("com.facebook.fresco:fresco:3.1.3")