Cordova Ionic framework internet allow-intent not working

Hi:
I’m using condova 6.0 and Ionic ver 1.7.14, designing an Android mobile app, that works with internet connection. On the Ionic Lab it works fine, but when I generate the Android App and Installed on my Galaxy S4, does not connect to internet. I already review some forums, I’m using cordova whitelist, and add some extra properties to my config.xml file and still does not work.

Here in my config.xml file
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <widget id="com.ionicframework.viclab151106" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>VicLab</name> <description> An Ionic Framework and Cordova project. </description> <author email="you@example.com" href="http://example.com.com/"> Victor Rodriguez </author> <allow-navigation href="http://*/*" /> <allow-navigation href="https://*/*" /> <allow-navigation href="data:*" /> <allow-intent href="http://*/*" /> <allow-intent href="https://*/*" /> <access origin="*" /> <content src="index.html"/> <access origin="*"/> <preference name="webviewbounce" value="false"/> <preference name="UIWebViewBounce" value="false"/> <preference name="DisallowOverscroll" value="true"/> <preference name="android-minSdkVersion" value="16"/> <preference name="BackupWebStorage" value="none"/> <feature name="StatusBar"> <param name="ios-package" value="CDVStatusBar" onload="true"/> </feature> </widget>

Also, here is my index.html file:

`

<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'">

<title>VicLab</title>

<link href="lib/ionic/css/ionic.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">

<!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
<link href="css/ionic.app.css" rel="stylesheet">
-->

<!-- ionic/angularjs js -->
<script src="lib/ionic/js/ionic.bundle.js"></script>

<!-- cordova script (this will be a 404 during development) -->
<script src="cordova.js"></script>

<!-- your app's js -->
<script src="js/app.js"></script>
<script src="js/controllers.js"></script>
<script src="js/whitelist.js"></script>
`

Any help will be appreciated !

`