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

前端 未结 4 1332
夕颜
夕颜 2020-12-20 11:40

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-

4条回答
  •  北海茫月
    2020-12-20 11:49

    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 MinimumOSVersion 9.0

    Than I run flutter build ios --release

提交回复
热议问题