Hey,
Am not sure what is the issue here, but no a days the log just showing this message and cause many of the plugins not to work.
1- My Ionic Info :
OS: Mac OS X Yosemite
Node Version: v0.12.0
Cordova CLI: 4.3.0
Ionic CLI Version: 1.3.16
Xcode version: Xcode 6.1.1 Build version 6A2008a
ios-sim version: 3.0.0
2- Plugin Used :
com.ionic.keyboard 1.0.3 “Keyboard”
com.phonegap.plugins.PushPlugin 2.4.0 “PushPlugin”
nl.x-services.plugins.socialsharing 4.3.15 “SocialSharing”
org.apache.cordova.device 0.3.0 “Device”
org.apache.cordova.dialogs 0.3.0 “Notification”
org.apache.cordova.globalization 0.3.4 “Globalization”
org.apache.cordova.inappbrowser 0.6.0 “InAppBrowser”
org.apache.cordova.network-information 0.2.15 “Network Information”
org.apache.cordova.splashscreen 1.0.0 “Splashscreen”
org.apache.cordova.vibration 0.3.13 “Vibration”
org.crosswalk.engine 0.0.1-dev “Crosswalk Engine”
org.pushandplay.cordova.apprate 1.1.7 “AppRate”
3- CrossWalk Version :
“browsers”: [
{
“platform”: “android”,
“browser”: “crosswalk”,
“version”: “11.40.277.7”
}
]
4- More Details :
My app used to work normally, but suddenly I got this message and most of the plugins stopped to work, so I tried to delete Crosswalk and reinstall it, and I got the same results nothing change, then I tried to create an empty project with only crosswalk installed and test it to see what is the issue, but everything worked, and the way for me to test it is to do a small alert inside the ionicPlatform.ready
function like this:
.run(function($ionicPlatform, $cordovaNetwork, $ionicHistory) {
$ionicPlatform.ready(function()
{
alert('am ready');
if(window.cordova && window.cordova.plugins.Keyboard)
{
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
}
if(window.StatusBar)
{
StatusBar.styleDefault();
StatusBar.hide();
}
});
})
now, when I got this I thought to myself it might be something in my code or something in the app module or so, but the results was not as I though it will the only things I did was the following :
1- didnt change any of my app module load and kept it like this
angular.module(‘app’, [‘ionic’,‘ngStorage’,‘ngCordova’,‘ngSanitize’, ‘ImgCache’])
2- I only changed the .run
to be like the latter .
3- and commented all the .config
section.
@mhartington am not sure if this is helpful enough but this is what I have been struggling for the past four days .