Loading XCodewe are getting this error.
Any solution?
FAILED pluginJSON = ["AuthProxy1342781311","AuthProxy","initWebStrategies",[]] 2020-01-24 12:59:00.432213+0530 myJobCard[23188:330651] ERROR: Plugin 'StatusBar' not found, or is not a CDVPlugin. Check your plugin mapping in config.xml. 2020-01-24 12:59:00.432347+0530 myJobCard[23188:330651]
FAILED pluginJSON = ["StatusBar1342781312","StatusBar","_ready",[]] 2020-01-24 12:59:00.432539+0530 myJobCard[23188:330651] ERROR: Plugin 'Console' not found, or is not a CDVPlugin. Check your plugin mapping in config.xml. 2020-01-24 12:59:00.432642+0530 myJobCard[23188:330651]
FAILED pluginJSON = ["INVALID","Console","logLevel",["LOG","Set javascript initial log level: ERROR"]] 2020-01-24 12:59:00.432821+0530 myJobCard[23188:330651] ERROR: Plugin 'Console' not found, or is not a CDVPlugin. Check your plugin mapping in config.xml. 2020-01-24 12:59:00.432906+0530 myJobCard[23188:330651]
FAILED pluginJSON = ["INVALID","Console","logLevel",["LOG","Ionic Native: event fired after 444 ms"]] 2020-01-24 12:59:00.433063+0530 myJobCard[23188:330651] ERROR: Plugin 'SMPSettingsExchangePlugin' not found, or is not a CDVPlugin. Check your plugin mapping in config.xml. We are using the following versions in npm: version image
List of plugins which we are using in our project:List of plugin verions
We are trying the following solutions:
In X-Code, goto Build Phases -> open the Compiled Sources dropdown. Click + and add the missing plugin .m file that should be in your Plugins directory (but is missing from the compiled sources).All ready.M file is available . please follow the image in x-code All plugins .m files
In short:
Sorry to say that you aren't providing a lot of information, which makes guessing a lot harder - what app are you trying to build? Is the SMP SDK installed? It does look a little to me that the project config is out of sync with the sources, which may happen if you blindly delete folders in Cordova :)
To be safe when Cordova runs into hiccups, I usually
cordova plugin remove <id>
cordova platform add <ios>
plugins
and platforms
folders altogethercordova platform add ios
cordova plugin add <id>
Also, as a general rule of thumb - do not mess with the platforms
folder. As opposed to Ionic sources, the generated output is not meant to be modified, and if there are issues with the output, it is likely that there are issues with your Cordova project settings.
Maybe my CI tutorial gives you another hint or two as well: https://developers.sap.com/tutorials/ci-best-practices-mobile-cordova.html