79725661

Date: 2025-08-05 06:05:59
Score: 1
Natty:
Report link

i was also facing this issue for the past 2 months. atlast we changed to https .

today too when i checked issue still there but i tried many steps and,
Fixed the issue now.
steps.
remove your existing http request checking code in info.plist
add this

<key>NSAppTransportSecurity</key>
<dict>
     <key>NSExceptionDomains</key>
     <dict>
         <key>NSExceptionAllowsInsecureHTTPLoads</key>
         <true/>
     <key>localhost</key>
     <dict>
         <key>NSExceptionAllowsInsecureHTTPLoads</key>
         <true/>
     </dict>
     </dict>
     <key>NSAllowsArbitraryLoads</key>
     <true/>
</dict>

then Xcode -> product -> Clean Build folder
then run the app in your iOS device.

Now we can run your http urls in your ios as you needed .

Reasons:
  • Blacklisted phrase (1): also facing this
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Govind29