Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

ios - 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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...