iPhone APP提交限制硬件与麦克风
我们有一个应用程序,我们希望仅限于带有麦克风的设备。我们将其添加到 Plist 中,但现在无法提交应用程序,因为我们已经不受限制地提交了应用程序。这是怎么回事,有什么简单的方法可以解决这个问题吗?
另外,有没有办法限制在 iPad / iTouch 上安装,同时允许在 iPad 上安装?有 Plist 条目吗?唯一突出的真实项目是 IOS 版本。
另外,那些可以插入麦克风但未嵌入麦克风的设备又如何呢?
We have an app that we would like to restrict to only devices with Microphones. We added this into the Plist and now can not submit the app since we have already submitted the app without the restriction. What is the deal with this, any easy way around this?
Also, Is there a way to restrict installation on the iPad / iTouch while allowing installations on iPad? Is there a Plist entry for this? The only real item the sticks out is the IOS Version.
Also what about devices that can have Microphones plugged in but not imbedded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用麦克风限制进行提交的最简单方法是在应用程序商店中创建一个全新的应用程序,然后仅更改本地 Xcode 项目的包标识符。苹果不能抱怨它作为一个全新的应用程序时没有受到这种方式的限制。
您可以使用 音频队列服务。更高级的实现是
AVAudioRecorder
。The easiest way to do the submission with the microphone restriction would be to create a completely new app in the appstore, and just change the bundle identifier of your local Xcode project. Apple can't complain that it used to not be restricted in this manner when it's an entirely new app.
You can handle both external and internal microphones with Audio Queue Services. A more high-level implementation is
AVAudioRecorder
.我无法帮助您完成第一个查询,但您可以通过指定 iPad & 来仅针对 iPad 进行编译。 Xcode 中项目设置的目标设备部分不是 iPhone/iPad。
I can't help you with your first query but you can compile only for iPad by specifying iPad & not iPhone/iPad in the target devices part of the project's settings in Xcode.