Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cordova error: Refused to execute inline script because it violates the following Content Security Policy directive

I'm learning to use Cordova with jquery mobile and I have the following error:

Refused to execute inline script because it violates the following Content Security Policy directive: "default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'". Either the 'unsafe-inline' keyword, a hash ('sha256-iacGaS9lJJpFDLww4DKQsrDPQ2lxppM2d2GGnzCeKkU='), or a nonce ('nonce-...') is required to enable inline execution. Note also that 'script-src' was not explicitly set, so 'default-src' is used as a fallback.

My code is as follows:

    <!DOCTYPE html> 
<html>
    <head>
        <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *; img-src 'self' data: content:;">
        <meta name="format-detection" content="telephone=no">
        <meta name="msapplication-tap-highlight" content="no">
        <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
        <link rel="stylesheet" type="text/css" href="css/index.css">
        <title>Hello World</title>
        <script> 
            $(document).ready(function()
            { 
                $("#tryit").click(function() {   
                    document.getElementById("msg").innerHTML = "hello";
                });

            }); 
        </script>
    </head>
    <body> 
        <button id="tryit">Try it</button>
        <div id="msg"></div>

        <script type="text/javascript" src="cordova.js"></script>
        <script type="text/javascript" src="js/index.js"></script>
    </body>
</html>

In the class, I wrote this:

cordova create hello2 com.example.hello2 hello2
cordova platform add android
cordova build 

I think it has to do with "cordova-plugin-whitelist" , but I don't know how to uninstall the NPM

like image 965
Periseas Lilith Avatar asked Jan 09 '17 19:01

Periseas Lilith


2 Answers

You need to add 'unsafe-inline' to the Content-Security-Policy; either to the default-src or explicitly for Javascript using script-src. So try something like:

<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; media-src *; img-src 'self' data: content:;">
like image 88
DaveAlden Avatar answered Sep 30 '22 10:09

DaveAlden


Simply add this code in index.html

<meta http-equiv="Content-Security-Policy" script-src='unsafe-inline';>

For more information visit: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/script-src#Unsafe_inline_script

like image 38
Krishna Kumar Singh Avatar answered Sep 30 '22 10:09

Krishna Kumar Singh