Parse Issue (Xcode): Module 'xxxxxxxxx' not found #2274
-
If you are looking for help, please confirm the following...
Which mobile framework are you using?Flutter (Dart) Steps to reproduceMy real project fails with this error message that module is not found (e.g Parse Issue (Xcode): Module 'connectivity_plus' not found but happens although for other modules). Internet search for this error found a good amount of such problems an suggested solutions. None of them solved the problem for this simple project. Beneath other Attempts I tried:
Expected resultsA Runner.app.zip artefact Actual resultsFails with Parse Issue (Xcode): Module 'connectivity_plus' not foun Build id (optional)657df9bd740d53fd79194bb0 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @printpagestopdf, the very first place to check in these cases is whether the package is installed or not. If you check the logs for
As you can see the package is resolved unlike yours. So what to do =>
I strongly suggest you to try all these by remote accessing to the builder machine, so you can try all of these in one go for an easier debugging session. More info here |
Beta Was this translation helpful? Give feedback.
-
After several trials with different approaches I found this solution for my problem: |
Beta Was this translation helpful? Give feedback.
After several trials with different approaches I found this solution for my problem:
Replaced ios/Podfile by this one:
https://fossies.org/linux/flutter/examples/api/ios/Podfile
and the ios app were build without errors!
Don't know how generic this solution is, but perhaps its useful for others.