ClipboardManager
ClipboardManager copied to clipboard
Does not work on iOS, `SWIFT_VERSION`
-
clipboard_manager
does not specify a Swift version and none of the targets (Runner
) integrating it have theSWIFT_VERSION
attribute set. Please contact the author or set theSWIFT_VERSION
attribute in at least one of the targets that integrate this pod.
set you swift language in xcode build setting
i have same issue, i just add
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.2'
end
end
end
but still erro.
i have same issue, i just add
post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = '4.2' end end end
but still erro.
https://github.com/ko2ic/image_downloader/issues/9#issuecomment-471608482
i use this solution, the problem sovled