'Flutter iOS Build Error - framework image_picker not found
I have added v0.8.5 of image_picker library in my project.
I have tried following things to solve the issue:
Deleted podfile.lock & Pods folder from iOS Directory
Deleted pubspec.lock file from Project Directory
pod deintegrate
flutter clean
flutter pub get
pod install
While building the project in iOS,It throws following error
ld: framework not found image_picker
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Can anyone provide a solution to this?
Solution 1:[1]
for me change to image_picker: 0.8.0 after that,
- flutter clean,
- flutter pub get
- cd ios
- pod deintegrate; pod install
Solution 2:[2]
I tried downgrading image_picker to v0.8.0 Library & that worked for now.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | aqibGenk |
| Solution 2 |
