Why I am getting AWS connection related error in my crash analytics tool ?

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.

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.