ios - Cordova app not shows iframe (VS TACO) -
i'm using visual studio tools apache cordova (vs taco) cordova 7.0.1 engine , trying build ios application.
application wrapper website. works fine except iframe within website (from external domain). here how app loads site config.xml:
<content src="http://mysite.example.com/" />
i have installed inappbrowser plugin , here there thing i've tried:
- added allow-navigation parameters config.xml:
<allow-navigation href="http://mysite.example.com/*" /> <allow-navigation href="https://iframe-server.example.com/*" />
,<allow-navigation href="https://*.com" /> <allow-navigation href="http://*.com" />
- added allow-intent , access parameters config.xml:
<allow-intent href="*" /> <access origin="*" />
- added content-security-policy meta tag both website , cordova's index.hml (not sure if makes sense):
<meta http-equiv="content-security-policy" content="default-src * 'unsafe-inline' 'unsafe-eval'; child-src 'self' https://iframe-server.example.com">
i don't know wrong i've noticed old application (cordova 4.x.x) didn't have problem.
Comments
Post a Comment