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:
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>
If you're encountering this, solution above.
Most helpful comment
If you're encountering this, solution above.