This error occurs because iOS apps can run on Apple Silicon Macs by default, and your app may not be configured to support macOS. In this article, we’ll walk through a simple solution to resolve the issue by updating the LSMinimumSystemVersion in the Info.plist, as well as how to disable macOS compatibility if your app is not intended for Mac. We’ll cover the following steps:
LSMinimumSystemVersion key.<plist version="1.0"> <dict> <key>LSMinimumSystemVersion</key> <string>13.0.0</string> </dict> </plist>
Whether you’re supporting macOS or not, this guide will help you eliminate this issue in your next app delivery.