Cordova prepares ios 'undefined' team

I am trying to run cordova prepare ios

on command line so I can then use Xcode to build my ios app. It just returns 'undefined'. It usually has no console output, but the application is prepared correctly. There are several developers on this project and I recently had to fix a few merge conflicts in a file Images.xcassets/launch.launchimage/Contents.json

, but beyond that I haven't touched on the cordova config settings. Any help would be much appreciated.

This is the output when I run it with the verbose flag. I would add more code, but I honestly don't know where to start looking for the error.

$ cordova prepare ios --verbose
Generating config.xml from defaults for platform "ios"
Calling plugman.prepare for platform "ios"
Preparing ios project
Processing configuration changes for plugins.
Iterating over installed plugins: [ 'org.apache.cordova.device',
  'org.apache.cordova.inappbrowser',
  'com.danielcwilson.plugins.googleanalytics',
  'com.phonegap.plugins.PushPlugin',
  'com.mobileapptracking.matplugin',
  'com.mobileapptracking.gaidwrapper',
  'com.mobileapptracking.ifawrapper',
  'nl.x-services.plugins.launchmyapp',
  'com.phonegap.plugins.facebookconnect',
  'com.google.playservices' ]
Writing out cordova_plugins.js...
undefined

      

+3


source to share


1 answer


There was a problem after a git conflict. Had to manually verify that the merge was correct in .xcodeproj.



The extra commas didn't seem to affect it.

0


source







All Articles