Viv*_*vek 20 app-store ios ipa info-plist flutter
我已成功为应用商店连接生成 .ipa 但在验证阶段从 XCode 上传到 App Store Connect 时出现此错误 ERROR ITMS-90208: "Invalid Bundle. The bundle myApp.app/Frameworks/App.framework does not support the minimum OS Version specified in the Info.plist."
我尝试过
错误 ITMS-90208:“无效的捆绑包。捆绑包 <your.app> 不支持 Info.plist 中指定的最低操作系统版本”
https://github.com/tanersener/mobile-ffmpeg/issues/18
这些解决方案但没有用
小智 15
我有同样的问题。要修复,我执行了以下步骤:
Flutter clean
<key>MinimumOSVersion</key> <string>9.0</string>
比我跑 flutter build ios --release
Pus*_*ama 10
我可以通过在myApp.app/Frameworks/App.framework
info.plist 文件中指定minimumOsVersion 来解决此问题(请确保它不是创建构建后生成的全局 info.plist 文件)
出现此错误的原因是,当前最低操作系统版本为 9.0
要解决此问题,您无需执行更多操作,只需按照以下步骤更改最低操作系统版本即可。
清理你的项目
flutter clean
Run Code Online (Sandbox Code Playgroud)
在 Xcode 中,Runner.xcworkspace
在应用程序的 ios 文件夹中打开。
要更改 MinimumOSVersion选择Runner > Flutter -> AppFrameworkInfo.plist
<key>MinimumOSVersion</key>
<string>9.0</string>
Run Code Online (Sandbox Code Playgroud)
要更改 iOS 部署目标,请在 Xcode 项目导航器中选择 Runner 项目。然后,在主视图侧边栏中,选择 Project Runner -> Info -> iOS Deployment Target to 9.0
信息:应用程序在 iOS、tvOS 和 watchOS 上运行所需的最低操作系统版本。App Store 使用此键来指示您的应用程序可以运行的操作系统版本。
归档时间: |
|
查看次数: |
4304 次 |
最近记录: |