when i am build the flutter app in xcode , i am getting error "Parse Issue (Xcode): Module 'path_provider_ios' not found" so could you please provide solution was is missing .
Asked
Active
Viewed 1,338 times
2 Answers
1
- Open your Xcode project.
- Navigate to the "Build Settings" tab.
- Select the "Linking" category.
- Look for the "Other Linker Flags" setting and expand it.
- Find the flag that includes "path_finder_ios".
- Remove the flag by clicking on it and pressing the delete key, or by right-clicking and selecting "Delete".
- Save your changes and rebuild your project.
Note that this step is necessary because the "path_provider_ios" package has been discontinued and replaced by "path_provider_foundation". Removing the "path_finder_ios" flag will ensure that your project is not trying to link to the deprecated package and is instead using the new package correctly.

Devplanet
- 770
- 8
- 7
-
module 'path_provider_foundation' not found I'm getting this error when building archive. flutter build ios working fine via command line. – Afaq Ahmed Apr 10 '23 at 12:05