Closed billouboq closed 4 years ago
Closing the issue because this issue tracker is intended to track React Native issues, but your case is caused by your custom configuration. I suspect that Fresco version is bumped between 0.61.4 and 0.63.1, therefore you might need to upgrade your custom Fresco build too.
@billouboq there is a binary lib conflict with com.facebook.flipper:flipper-fresco-plugin
. I'll try to find some time and upgrade the Fresco template for 0.63 but in the meantime, you can disable Flipper if you want to compile Fresco and disable imagepipeline downsampling for RN 0.63.
@clytras Thank you very much, you are a savior !
Description
Since fresco has downsampling issues when linked with React-Native (see: https://github.com/facebook/fresco/issues/2397), I had to use a forked Fresco's version and build it manually. It worked well in react-native 0.61.4 but when I tried to update to react-native 0.63.1 I have this error :
It seems that react-native includes fresco now and it conflict with the builded fresco version.
I tried things like this :
But it didn't worked very well.
If I comment the part where I build my forked fresco library it work very well. But then I will have issues with downsampling...
Is there a way to exclude fresco and only keep my own fresco build ?
Here is my gradle code :
React Native version:
Run
react-native info
in your terminal and copy the results here.Steps To Reproduce
Provide a detailed list of steps that reproduce the issue.
Expected Results
Expect my android code to compile correctly