If you are facing this issue when you are using IONIC(PhoneGap) and run the app on iPhone/iPad(IOS)
the add the following lines at the end of your info.plist file (It must be before the last </dict> tag):
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
- 2:29 PM
- 0 Comments