UIRequiredDeviceCapabilities 相当于 Mac App Store 吗?
我正在开发一款仅对笔记本电脑用户 (MacBook) 有用的 Mac 应用程序,并计划在 Mac App Store 上分发此应用程序。对于 iOS App Store,您可以在 plist 中指定 UIRequiredDeviceCapability,以便只有拥有适当设备的用户才能看到商店中的应用程序。有没有办法对 Mac App Store 做同样的事情?
I am developing a Mac app that is only useful for laptop owners (MacBooks) and plan on distributing this app on the Mac App Store. For the iOS App Store, you can specify in the plist UIRequiredDeviceCapabilities so that only users with the proper device can see the app in the store. Is there a way to do the same with the Mac App Store?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
iTunes Connect 开发者指南第 39 页:
From page 39 of the iTunes Connect Developer Guide:
虽然没有与
UIRequiredDeviceCapability
等效的功能,但可以在PreInstallRequirements.plist
中指定一些功能。这种方法允许您指定最小 RAM、GPU 功能、最小最小版本。
请参阅此处:
Mac 应用商店产品构建
https://developer.apple.com/library/archive/qa/qa1748/_index.html#//apple_ref/doc/uid/DTS40011181
https://developer.apple.com/library/archive/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html
While there is no equivalent to
UIRequiredDeviceCapabilities
, some capabilities can be specified in aPreInstallRequirements.plist
.This approach let you specify minimum RAM, GPU capabilities, minimum minversions.
See here:
Mac app store productbuild
https://developer.apple.com/library/archive/qa/qa1748/_index.html#//apple_ref/doc/uid/DTS40011181
https://developer.apple.com/library/archive/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html