LoginSignup
1

More than 1 year has passed since last update.

posted at

Flutterアプリのipaをアップロードすると ITMS-90208 エラー

Flutterを1.17.1から1.22.1に上げたところ、ストアにipaをアップすると以下のエラーができるようになってしまいました。

ERROR ITMS-90208: "Invalid Bundle. The bundle Runner.app/Frameworks/App.framework does not support the minimum OS Version specified in the Info.plist."

修正方法

以下の方法で解決できました。

  • /ios/Flutter/AppframeworkInfo.plistMinimumOSVersion を 9.0 にする
  • プロジェクトの iOS Deployment Target を 9.0にする
  • ターゲットの iOS Deployment Target を 9.0にする
  • flutter cleanしてから再ビルド

参考
https://github.com/flutter/flutter/issues/58200#issuecomment-675085313

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
What you can do with signing up
1