flutter_downloader icon indicating copy to clipboard operation
flutter_downloader copied to clipboard

No such module 'flutter_downloader'

Open jisam4me opened this issue 4 years ago • 4 comments

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.

Screenshot 2021-10-03 at 5 56 55 PM

Thanks in advance.

jisam4me avatar Oct 03 '21 12:10 jisam4me

Hi guys,

I have the same issue, any ideas ?

cheers, Luc

ghost avatar Oct 22 '21 10:10 ghost

Use the below podfile Podfile.zip e

jisam4me avatar Nov 06 '21 16:11 jisam4me

Use the below podfile Podfile.zip e

Worked for me thanks

emmett-deen avatar Nov 09 '22 23:11 emmett-deen

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

kapilsharma-gts avatar Aug 10 '24 14:08 kapilsharma-gts