Many of my users have been experiencing this error recently.
This the error report link
The link specified in the error downloads one of the local images bundled with the app. After doing some searching, I found that this link is hosted by AWS and I don’t use AWS neither in my code nor any of the dependencies I use.
The only potential source of the problem in my code is this piece:
cachImages = images =>
images.map(image => {
if (image) {
if (typeof image === "string") {
return Image.prefetch(image);
}
return Asset.fromModule(image).downloadAsync();
}
});
But this was never problematic before.