Reputation: 697
This is a simple flutter project. Android version is running without any error.
But the Problem is in ios version. Here is the screenshot of the error.
I have removed the podfile and reinstall again. But no luck!!
Upvotes: 6
Views: 4345
Reputation: 59
I fixed the issue by removing the module from my pubspec.yaml and adding it again.
Clean derived data manually.
flutter pub get
(without flutter_keyboard_visibility)
flutter clean
flutter pub get
(uncomment to reinstall it)
pod install
Launch Runner.xcworkspace Build & Run
EDIT: If your problem is with the archive and not the run. It seems that your minimum ios version is too old. Simply increase the minimum iOS version in Runner > Targets > Deployment Info
(For me, iOS 11 works).
Upvotes: 4