-
I wonder if its possibel to stream from |
Beta Was this translation helpful? Give feedback.
Answered by
pke
Apr 21, 2023
Replies: 1 comment
-
For iOS this requires adding an ATS excemption for the URL in question like this <key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>streamingsoundtracks.com</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
</dict>
</dict> |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
pke
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For iOS this requires adding an ATS excemption for the URL in question like this