I am having trouble calling HTTPS pages with a webview on my app. I tried with ATSEnabled = False and True. So far, my https calls to a server are working fine. Only once i try to load a page in the Webview i have a blank page. (ex:https://www.google.com)
I could do that in B4A with various techniques, i just can't seem to find a way in B4i.
You don't need to do anything special to load https pages.
B4X:
Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
Page1.Initialize("Page1")
Page1.RootPanel.LoadLayout("1")
NavControl.ShowPage(Page1)
WebView1.LoadUrl("https://www.google.com")
End Sub