Reputation: 146
I'm working with Rox Xamarin Video 2.1.0. in xamarin forms there is url here I tried to make video view like sample project. but it is not woking. sample project is working well, but my project is not working.
Upvotes: 1
Views: 473
Reputation: 46
You need to provide settings in info.plist.
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>yourDomainName.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSTemporaryExceptionMinimumTLSVersion</key>
<string>TLSv1.1</string>
</dict>
</dict>
</dict>
Upvotes: 1