Reputation: 7949
I have successfully generated .ipa for app store connect but when Uploading to App Store Connect from XCode in the validation phase I am getting this error ERROR ITMS-90208: "Invalid Bundle. The bundle myApp.app/Frameworks/App.framework does not support the minimum OS Version specified in the Info.plist."
https://github.com/tanersener/mobile-ffmpeg/issues/18
these solutions but didn't work
Upvotes: 26
Views: 16226
Reputation: 321
My case:
Upvotes: 1
Reputation: 1117
Step-1: Open your Flutter project in XCode
Step-2: Change minimum OS version like this for your project:
Step-3: Change minimum OS version like this for Flutter Framework
Step-4: Archive and Publish your app.
Here is the official documentation for reference.
Upvotes: 21
Reputation: 1135
Flutter has enforced the minimum plugin version of 11 in flutter version 3.3
Upvotes: 1
Reputation: 311
I had the same problem. To fix, I did this steps:
Flutter clean
<key>MinimumOSVersion</key> <string>9.0</string>
Than I run flutter build ios --release
Upvotes: 21
Reputation: 7949
I am able to solve this by specifying minimumOsVersion in myApp.app/Frameworks/App.framework
's info.plist file (Please make sure that it is not the global info.plist file it is generated after creating the build)
Upvotes: 10