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

5

25

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

Dartboard answered 11/3, 2020 at 13:56 Comment(0)
D
10

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)

Dartboard answered 12/3, 2020 at 7:6 Comment(1)
I am getting this error and I tried all of the above and it still did not work. Anything else you did to fix it?Toponymy
M
21

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

Mass answered 15/9, 2020 at 13:30 Comment(2)
The only needed file is AppFrameworkInfo.plist because the others are automatically replaced every buildConsuetudinary
Thank you so much. This worked for me. Saved me twice! <3Blanc
T
20

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.

Telpher answered 12/10, 2020 at 12:45 Comment(0)
D
10

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)

Dartboard answered 12/3, 2020 at 7:6 Comment(1)
I am getting this error and I tried all of the above and it still did not work. Anything else you did to fix it?Toponymy
M
1

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

Flutter 3.3. Release notes

Markitamarkka answered 26/1, 2023 at 18:17 Comment(0)
O
1

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

Over answered 2/2, 2024 at 7:54 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.