79089310

Date: 2024-10-15 09:30:52
Score: 1.5
Natty:
Report link

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:

<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.

Reasons:
  • Blacklisted phrase (1): this guide
  • Blacklisted phrase (1): this article
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rahul D