Pushprajsinh Chudasama
Pushprajsinh Chudasama

Reputation: 7949

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

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

Upvotes: 26

Views: 16226

Answers (5)

Thang Tran
Thang Tran

Reputation: 321

My case:

  1. Check ios/Podfile you can see this: platform :ios, '13.0' (or other number)
  2. Open Xcode => Runner/Flutter/AppFrameworkInfo change MinimumOSVersion to 13.0. Do the same for Runner/Runner/Info.

enter image description here

Upvotes: 1

Omar Khaium Chowdhury
Omar Khaium Chowdhury

Reputation: 1117

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.

Here is the official documentation for reference.

Upvotes: 21

LP Square
LP Square

Reputation: 1135

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

Flutter 3.3. Release notes

Upvotes: 1

Renan Soranso
Renan Soranso

Reputation: 311

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

Upvotes: 21

Pushprajsinh Chudasama
Pushprajsinh Chudasama

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

Related Questions