React-native-fast-image: Images from http uris do not load / blank spaces on Android

Created on 15 Oct 2019  路  1Comment  路  Source: DylanVann/react-native-fast-image

Describe the bug
Images from http uris do not load

To Reproduce
Steps to reproduce the behavior if possible, or a link to a reproduction repo:

  1. In Production (release) mode, http images do not load (vs. https:// images)

Expected behavior
Images should load

Solution
Make sure you have the following in your AndroidManifest.xml

<manifest ...>
    <uses-permission android:name="android.permission.INTERNET" />
    <application
        ...
        android:usesCleartextTraffic="true"
        ...>
        ...
    </application>
</manifest>
bug

Most helpful comment

If you're encountering this, solution above.

>All comments

If you're encountering this, solution above.

Was this page helpful?
0 / 5 - 0 ratings