After the fix i found for my previous issue: phonegap-cordova-3-4-clean-build-gets-apple-mach-linker-error
So now, if I make a blank project
$ cordova create hello com.example.hello HelloWorld
$ cordova platform add ios
$ cordova build ios
Now I need to do follow these instructions previous question After that everything works fine.
BUT now I'm gonna install an plugin (doesn't matter what plugin). For now i choose the logger (org.apache.cordova.console)
$ cordova plugin add org.apache.cordova.console
Now if i build and run the app. It crashes on startup. see: screenshot
I enabled on Zombie Objects in xcode.
Even if I install previous versions of phonegap(cordova). I still need to do all these steps. Before I just create, add platform, build and run and it was done.
Nothing is working anymore, please helpe me out here. It's really annoying.
EDIT: If i comment the line console.log('Received Event: ' + id); in js/index.js the app will start, but if I call console.log it crashes.