如何限制使用 64 位设备的用户安装我的 iOS 应用程序?
How can I restrict users with 64 bit devices to install my iOS app?
我正在开发一个 iPhone 应用程序,该应用程序使用的框架仅适用于 64 位设备。
除了定位 iOS 11 之外,如何限制我的应用程序仅适用于 64 位 iOS 设备?
转到构建设置并设置以下参数
1. Valid Architectures = arm64
2. Build Active Architecture Only
Debug = NO // This setting is for simulator to work
Release = Yes // This is for device
我正在开发一个 iPhone 应用程序,该应用程序使用的框架仅适用于 64 位设备。
除了定位 iOS 11 之外,如何限制我的应用程序仅适用于 64 位 iOS 设备?
转到构建设置并设置以下参数
1. Valid Architectures = arm64
2. Build Active Architecture Only
Debug = NO // This setting is for simulator to work
Release = Yes // This is for device