Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Uploading flutter app to AppStore gives App.framework does not support the minimum OS Version specified in the Info.plist

Tags:

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."

I have tried
ERROR ITMS-90208: "Invalid Bundle. The bundle <your.app> 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

like image 268
Vivek Avatar asked Mar 11 '20 13:03

Vivek


People also ask

How do I change the minimum iOS version in Xcode?

The minimum iOS version can be set in the build settings under iOS Deployment Target. The same counts for macOS, tvOS, and watchOS.

Does Flutter work on macOS?

Desktop support allows you to compile Flutter source code to a native Windows, macOS, or Linux desktop app. Flutter's desktop support also extends to plugins. You can install existing plugins that support the Windows, macOS, or Linux platforms, or you can create your own.

How do you upload a Flutter app to TestFlight?

Release your app on TestFlightNavigate to the TestFlight tab of your app's application details page on App Store Connect. Select Internal Testing in the sidebar. Select the build to publish to testers, then click Save. Add the email addresses of any internal testers.

How do I run a Flutter app in real iOS?

To test or deploy our flutter app to a physical device we first need to enable physical device deployment in Xcode using Apple ID or an Apple Developer account. And we also need to set up a package manager to manage flutter plugins that are to be used in the project.


1 Answers

I had the same problem. To fix, I did this steps:

  1. Flutter clean
  2. Change files AppFrameworkInfo.plist (/ios/Flutter/AppFrameworkInfo.plist) and Info.plist (/ios/Flutter/Flutter.Framework/Info.plist)
  3. Put version 9.0 on code <key>MinimumOSVersion</key> <string>9.0</string>

Than I run flutter build ios --release

like image 164
Renan Soranso Avatar answered Sep 21 '22 01:09

Renan Soranso