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-
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
This error arises because, currently Minimum OS Version is 9.0
To fix this, you do not need to do much more, just follow the steps given below to change Minimum OS Version.
Clean your project by
flutter clean
In Xcode, open Runner.xcworkspace
in your app’s ios folder.
To Change MinimumOSVersion Select Runner > Flutter -> AppFrameworkInfo.plist
<key>MinimumOSVersion</key>
<string>9.0</string>
To Change iOS Deployment Target, select the Runner project in the Xcode project navigator. Then, in the main view sidebar, select the Project Runner -> Info -> iOS Deployment Target to 9.0
Info : The minimum operating system version required for the app to run on iOS, tvOS, and watchOS. The App Store uses this key to indicate the OS releases on which your app can run.
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.
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)