I migrated windows phone hybrid app from worklight 6.0 to worklight 6.1. We are also using around 13 user plugins apart from cordova Native APIs.
Starting to migrate the ProjectName project from version 6.0.0 to version 6.1.0.01.20140821-0406.
Migrating to Cordova 3.1.0 for Windows Phone 8
App migrates successfully.
After migration, application is not launching after splash-screen. MainPage.xaml.cs has following code at the starting:
InitializeComponent();
this.CordovaView.Browser.LoadCompleted += Browser_LoadCompleted;
In working 6.0 app, after InitializeComponent(), VS output lists all the plugins.But in 6.1 app, it doesn't display any plugin.
In working 6.0 app, after this.CordovaView.Browser.LoadCompleted, VS output is
CordovaBrowser_Navigated :: /www/default/MainPage.html
CordovaBrowser_Navigated :: ///www/default/MainPage.html
But in 6.1, it is not showing CordovaBrowser_Navigated.
Note: worklight 6.0 uses cordova 2.6 and worklight 6.1 uses cordova 3.1.0
Do we have to use node CLI the command line interface to add plugins?