我向App Store提交了应用程序,但由于无法在iPhone和iPad上安装该应用程序而被拒绝两次。他们说,Info.plist中的UIRequiredDeviceCapabilities键是以不会在iPhone和iPad上安装的方式设置的。
他们写道,接下来的步骤是:
要解决此问题,请检查UIRequiredDeviceCapabilities 密钥以验证它是否仅包含您所需的属性 应用功能或设备上不得出现的属性。 字典指定的属性如果是,则应设置为true 如果必须在设备上不存在,则为必填和错误。
首次提交后,我完全删除了UIRequiredDeviceCapabilities键,但他们仍然无法安装。
我没有iPhone或iPad,我在模拟器上测试了应用程序并且它正常工作。
这是我的info.plist:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>3</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiresFullScreen</key>
<false/>
<key>UIStatusBarHidden</key>
<false/>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleDefault</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>
有谁知道如何修改它以便可以安装在iPhone和iPad上?
答案 0 :(得分:1)
UIRequiredDeviceCapabilities
必须出现在您的Info.plist中。
在我在App Store上的所有应用程序中,这就是我所拥有的:
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
所以我建议你试试。