I'm trying to embed iframe to my hybrid app. Iframe pointed to external resource.
Config.xml contains:
<allow-navigation href="*" />
<allow-intent href="*" />
<access origin="*" allows-arbitrary-loads-in-media="true" allows-arbitrary-loads-in-web-content="true" allows-local-networking="true" />
Index.html contains:
<meta http-equiv="Content-Security-Policy" content="default-src 'self' * data: gap: filesystem: 'unsafe-eval';
style-src 'self' * data: gap: filesystem: 'unsafe-inline' 'unsafe-eval';
script-src 'self' * data: gap: filesystem: 'unsafe-inline' 'unsafe-eval';
child-src 'self' * data: gap: filesystem: 'unsafe-inline' 'unsafe-eval';
frame-ancestors 'self' * data: gap: filesystem: 'unsafe-inline' 'unsafe-eval'">
Cordova version 6.4.0
Could you please help me. What I need to do to embed iframe to app?