use_http_links_in_react_native.mo
Last updated
Last updated
Using HTTP links (in image sources for example) will not work on iOS devices/emulators. By default, the HTTP protocol is disabled. API calls and Image sources using HTTP protocol will not work on iOS, and no errors will be displayed.
Using the default configuration, the images in this page will not be displayed:
The source uri uses the HTTP protocol
By default iOS forbids calls using http protocol. Normally you should use secured http protocol (https), if you don't have that opportunity, you have to allow the domain using http protocol by modifying the <Project>/ios/<Project>/info.plist
:
in the NSExceptionDomains section, add your domain name and permission
the result is this: No image displayed :(
- [ ] Rebuild your app If you reloading your app it will not work, you modified Native code, so you need to rebuild the native part as well And it works :) and it works!