Hello when I try to build my app for ios I always getting this error I tryed many things like flutter clean deleting of pod files and set deployment info but always the same error.
Module 'add_2_calendar' not found.
CodePudding user response:
When you run flutter build ios a Podfile and Podfile.lock will be create in iOS folder
cd into ios folder with terminaldelete the Podfile.lock file manuallyrm -rf Podspod cache clean --allpod deintegratepod setuppod repo updatepod install
