billmalarky/react-native-image-cache-hoc

The image can't be cache if the link is in HTTP

Opened this issue · 0 comments

Based on the title,

The problem keep persist in android. Meanwhile when I try on ios it works perfectly fine.. It never mention any error just a warning.. But the image is not displaying on android because of this warn.. I did try allow the android:usesCleartextTraffic = true and other instruction based on this thread but the problem still persist..

Here's one of http image

and here's the warn display:

1569575738033

1569575737999

all of the above problem is when i use this :

CacheableImage.cacheFile('https://i.redd.it/hhhim0kc5swz.jpg', true) .then( localFileInfo => { console.log(localFileInfo); });

if i use this function:

<CacheableImage style={styles.image} source={{uri: 'https://i.redd.it/rc29s4bz61uz.png'}} permanent={false} />

this the warn i got :

Screenshot_1569578222

Screenshot_1569578230

I did try trace the 'EUNSPECIFIED' in the module itself and try to log one by one but the log never appear on the 'EUNSPECIFIED' section..

Did I do wrong somewhere?
Can anyone help me with this problem? Thanks in advance