ERROR ITMS-90208: "Invalid Bundle. The bundle <your.app> does not support the minimum OS Version specified in the Info.plist"

I've started getting this error message from Xcode:

ERROR ITMS-90208: "Invalid Bundle. The bundle <your.app> does not support the minimum OS Version specified in the Info.plist"

I've never specified the OS version number in the plist. It's always in the Deployment Target settings. I've checked the version in Deployment Target but it all looks good.

Any ideas how to fix?


Solution 1:

Go Runner -> Flutter -> AppFrameworkInfo.plist

And change the minimum sdk version 9 and also on xcode minimum sdk version 9.0

It's work for me :)

Solution 2:

I added to the info.plist.xml:

<key>MinimumOSVersion</key>
<string>10.0</string>

and it worked.

Solution 3:

I added iOS version to 10.0 in different places:

  • Runner -> Runner -> General -> Deployment info: Target
  • Runner -> Runner -> info.plist
  • Runner -> Flutter -> AppFrameworkInfo.plist

Worked for me.