In also added the <preference name="UseSwiftLanguageVersion" value="4.1" /> line in config.xml
The plugin installs correctly, the project builds correctly using xcode (after adding an additional param in the Pods project SWIFT_VERSION = 4.1)
But the project does not build using cordova build ios --device, I am receiving the following error:
ld: warning: directory not found for option '-F/Users/alexchirila/Library/Developer/Xcode/DerivedData/HelloWorld-gfigdqjpsastrsdveoablncumimx/Build/Intermediates.noindex/ArchiveIntermediates/HelloWorld/BuildProductsPath/Debug-iphoneos/Zip'
ld: framework not found Zip
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Is there anything I am doing wrong? Are there any workarounds?
This is the plugin source
In also added the
<preference name="UseSwiftLanguageVersion" value="4.1" />
line in config.xmlThe plugin installs correctly, the project builds correctly using xcode (after adding an additional param in the Pods project
SWIFT_VERSION = 4.1
)But the project does not build using
cordova build ios --device
, I am receiving the following error:Is there anything I am doing wrong? Are there any workarounds?