flutter_downloader
flutter_downloader copied to clipboard
No such module 'flutter_downloader'
I am using latest version of flutter_downloader (1.7.0). Xcode version 13. its constantly showing No such module 'flutter_downloader' ,I had removed and installed pod-file cleaned whole project. Still issue persist.
Thanks in advance.
Hi guys,
I have the same issue, any ideas ?
cheers, Luc
Use the below podfile Podfile.zip e
its works sometimes
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
target.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=*]"] = "armv7"
config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end