App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure

App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app’s Info.plist file.

This can be solve for iOS in build.settings:

NSAppTransportSecurity = 

{

NSExceptionDomains = 

{

  [“ubj3d.com”] =

  {

 NSIncludesSubdomains = true,

 NSThirdPartyExceptionAllowsInsecureHTTPLoads = true

  },

Can we do this for Mac or can we somehow edit the Info.plist file?

While this particular documentation isn’t about plists specifically it shows how to configure your build.settings file to have an OS X plist table:

https://docs.coronalabs.com/guide/distribution/osxBuild/index.html#custom-url-schemes

Have you tried putting the ATS in the osx table’s plist?

Rob

Thank you Rob for pointing to this.

Will try this later today and let you know the results.

Great, that worked!

While this particular documentation isn’t about plists specifically it shows how to configure your build.settings file to have an OS X plist table:

https://docs.coronalabs.com/guide/distribution/osxBuild/index.html#custom-url-schemes

Have you tried putting the ATS in the osx table’s plist?

Rob

Thank you Rob for pointing to this.

Will try this later today and let you know the results.

Great, that worked!