22

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

Pushprajsinh Chudasama
  • 7,772
  • 4
  • 20
  • 43

4 Answers4

20

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

Renan Soranso
  • 301
  • 2
  • 2
17

Step-1: Open your Flutter project in XCode

Step-2: Change minimum OS version like this for your project: preview

Step-3: Change minimum OS version like this for Flutter Framework preview

Step-4: Archive and Publish your app.

9

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)

Pushprajsinh Chudasama
  • 7,772
  • 4
  • 20
  • 43
1

Flutter has enforced the minimum plugin version of 11 in flutter version 3.3

Flutter 3.3. Release notes

LP Square
  • 927
  • 1
  • 10
  • 17