* Info.plist: https and iOS the same issue

* MainPage.xaml.cs:
This commit is contained in:
Claudiu Farcas
2018-07-31 15:12:30 +03:00
parent d8ab311c19
commit 0c870f1a66
2 changed files with 16 additions and 1 deletions
+15
View File
@@ -34,5 +34,20 @@
<string>TestModernHttpClient</string>
<key>XSAppIconAssets</key>
<string>Assets.xcassets/AppIcon.appiconset</string>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>mockhttpcalls.azurewebsites.net</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
</dict>
</dict>
</dict>
</plist>
+1 -1
View File
@@ -15,7 +15,7 @@ namespace TestModernHttpClient
{
public partial class MainPage : ContentPage
{
public const string TEST_URL = "http://mockhttpcalls.azurewebsites.net/api/values";
public const string TEST_URL = "https://mockhttpcalls.azurewebsites.net/api/values";
public MainPage()
{