【问题标题】:What is the setting to on the info.plist to prevent the app from running on an iPod-touch?info.plist 上的设置是什么以防止应用程序在 iPod-touch 上运行?
【发布时间】:2011-05-12 08:11:09
【问题描述】:

我不能使用“需要呼叫功能”,因为它需要与 iPad 兼容。

【问题讨论】:

  • 是什么让它可以在 iPad 上运行但不能在 iPod touch 上运行?
  • @BoltClock 两个字……客户

标签: iphone ios ipod-touch


【解决方案1】:
        iPhone 1G:  A-GPS,  accelerometer,  camera      --        --     
        iPhone 3G:  A-GPS,  accelerometer,  camera      --        --     
 iPhone Simulator:  A-GPS,  accelerometer     --        --        --     
       iPhone 3GS:  A-GPS,  accelerometer,  camera   compass,     --      
         iPhone 4:  A-GPS,  accelerometer,  camera,  compass,  gyroscope  
             iPad:  A-GPS,  accelerometer     --     compass,     --     
           iPad 2:  A-GPS,  accelerometer,  camera,  compass,  gyroscope  
    iPod Touch 1G:   --     accelerometer     --        --        --     
    iPod Touch 2G:   --     accelerometer     --        --        --     
    iPod Touch 3G:   --     accelerometer     --        --        --     
    iPod Touch 4G:   --     accelerometer,  camera,     --     gyroscope

所以试试类似的东西

<key>UIRequiredDeviceCapabilities</key>
<array>
 <string>gps</string>
  <string>location-services</string>
</array>

【讨论】:

    猜你喜欢
    • 2010-12-26
    • 1970-01-01
    • 2011-05-02
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-07-14
    • 2010-10-10
    • 2011-03-15
    相关资源
    最近更新 更多