Remote image download fails on iOS when built from KRelease, but not KDebug

This thread was migrated from an old forum. It may contain information that are no longer valid. For further assistance, please post a new question or open a support ticket from the Customer Support portal.

Is there a difference between how images are retrieved on KRelease vs KDebug? I'm experiencing an issue where images are successfully downloading from a remote location on KDebug but the images fail on KRelease.

I'm using version Visualizer 7.3

Hi,

There is no difference between Kdebug and KRelease with respect to image download. Can u check the image URL which is not downloaded is HTTP or HTTPS. If it is HTTP then you need to use HTTPS images. Or you can add AppTransportSecurity with Allow Arbitrary Loads YES in the info.plist to access the HTTP images in the application.

Thanks! adding

<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict>

to our info.plist file worked!

Hi,

Thank you for the update, Did my response help you? If yes, make sure you click [Select as Best] under the response to close out the post.