great pointer! I tried:
NSAppTransportSecurity = { NSExceptionDomains = { ["onestopdesktop.com/] = { NSIncludesSubdomains = true, NSExceptionRequiresForwardSecrecy = false, }, }, },
and more specifically:
NSAppTransportSecurity = { NSExceptionDomains = { ["onestopdesktop.com/images/DANGER.mov“] = { NSIncludesSubdomains = true, NSExceptionRequiresForwardSecrecy = false, }, }, },
and finally, the not recommended one that actually worked:
{ NSAppTransportSecurity = { NSAllowsArbitraryLoads = true }, },
did I do something wrong with the first two approaches?
in addition, I added this to try and access youtube videos which didn’t work. one forum participant said it worked for him:
LSApplicationQueriesSchemes = { "youtube" },
thanks again!