本文介绍了如何配置iOS应用到特定设备上工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我发展与ZBar SDK iOS应用为QR- codeS扫描。

So I have added auto-focus-camera key to the Required Device Capabilities section of my plist. All is great, except one thing - iPad 2 & iPod Touch 4th Gen doesn't have auto focus camera, but still are able to use my ZBar SDK code to scan QR-codes. But my auto-focus-camera key doen't allow users with iPad 2 and iPod Touch 4th Gen to download my app from App Store.

In other words I need to find a way to make my app installable via App Store on these devices:

  1. iPhone 3GS.
  2. iPhone 4.
  3. iPhone 4S.
  4. iPad 2.
  5. The New iPad.
  6. iPod Touch 4th Gen.

And on these devices my app should not be available:

  1. iPhone 2G.
  2. iPhone 3G.
  3. iPad.
  4. iPod Touch 3d Gen and

My question is: how to make my app available in App Store for first list devices' user and not available for second list devices' users?

Any help will be appreciated!

PS: I have seen this question on SO, but it doesn't help me much.

PS2: This app has the desired set of available devices.

Does anyone know, how they did it?

PS3: At the same time adding both still-camera and auto-focus-camera gives us this:

And that is not a great way as long as we have all iPhones as suitable for our app, instead of 3GS, 4 and 4S.

PS4: My app is here and it has such requirements:

解决方案

We need to use video-camera key in Required Device Capabilities section of app's plist.

这篇关于如何配置iOS应用到特定设备上工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-06 00:11