Hi,
I'm seeing several issue when building an Xcode project. I've tested it with an empty project, but still getting the following issues:
1. The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. - easily fixed by manually setting to 12.0
2. Could not find included file 'Pods/Target Support Files/Pods-xcode test/Pods-xcode test.debug.xcconfig' in search paths - fixed by removing:
#include "Pods/Target Support Files/Pods-xcode test/Pods-xcode test.debug.xcconfig"
From pods-debug.xcode (but that file starts with: "#include "Pods/Target Support Files/Pods-xcode test/Pods-xcode test.debug.xcconfig"" so not sure how safe deleting that line is?)
3. App icon isn't being used - instead it uses the default Cordova icon
4. In the project I'm working on, I also get an error about Swift version not being set - it's easy enough to set it to 4.2 in Build Settings, but thought I'd report it too.
Thanks!