I am trying to load content in an In App Browser from my local server ( using httpd plugin ). the web page is coming from a https, while the local server is loading of course a http.
I am testing on an Iphone x IOS 12. Using adobe Build
Tried:
<access origin='*' allows-arbitrary-loads-in-media='true' allows-arbitrary-loads-in-web-content='true' allows-local-networking='true' />
<edit-config target="NSAllowsArbitraryLoads" file="*-Info.plist" mode="merge">
<true />
</edit-config>
<plugin name="cordova-plugin-transport-security" source="npm" />
Error:
[blocked] The page at https://somewebpage was not allowed to run insecure content from http://127.0.0.1:8080/javascripts/somejsfile.js.
none of these worked. anyone have a suggestion?