App開発備忘録202306

Appstoreに新規バージョンのバイナリー送信時に以下のメールを受信した。その時の対処についてのメモ

受信したメール

Dear Developer,

We identified one or more issues with a recent delivery for your app, "ピィよピー 文字認識" 1.2 (1.2.1). Your delivery was successful, but you may wish to correct the following issues in your next delivery:

ITMS-90899: Apple silicon Mac support issue - The app is not compatible with the provided minimum macOS version of 13.1. It can run on macOS 13.3 or later. Please specify an LSMinimumSystemVersion value of 13.3 or later in a new build, or select a compatible version in App Store Connect. For details, visit: https://developer.apple.com/help/app-store-connect/manage-your-apps-availability/manage-availability-of-iphone-and-ipad-apps-on-macs-with-apple-silicon.

After you’ve corrected the issues, you can upload a new binary to App Store Connect.

Best regards,

Googleによる日本語翻訳は以下

親愛なる開発者様

最近配信されたアプリ「ピィよピー 文字認識」1.2 (1.2.1) で 1 つ以上の問題を特定しました。 配信は正常に完了しましたが、次回の配信では次の問題を修正する必要があるかもしれません。

ITMS-90899: Apple シリコン Mac サポートの問題 - アプリは、提供されている最小 macOS バージョン 13.1 と互換性がありません。 macOS 13.3以降で実行できます。 新しいビルドで LSMinimumSystemVersion 値を 13.3 以降に指定するか、App Store Connect で互換性のあるバージョンを選択してください。 詳細については、https://developer.apple.com/help/app-store-connect/manage-your-apps-availability/manage-availability-of-iphone-and-ipad-apps-on-macs-with を参照してください。 -アップルシリコン。

問題を修正したら、新しいバイナリを App Store Connect にアップロードできます。

よろしくお願いします、

対処法

Info.plistに以下のコードを追加

	<string>Send  pictures from App</string>
	<key>LSMinimumSystemVersion</key>
	<string>13.3</string>

Follow me!