无法在iPhone和iPad上安装该应用程序

问题描述 投票:0回答:1

我将应用程序提交到App Store,但由于无法在iPhone和iPad上安装应用程序而被拒绝两次。他们说,Info.plist中的UIRequiredDeviceCapabilities键设置的方式是应用程序不会安装在iPhone和iPad上。

他们写道,接下来的步骤是:

要解决此问题,请检查UIRequiredDeviceCapabilities项,以验证它是否仅包含应用功能所需的属性或设备上不得出现的属性。如果需要,字典指定的属性应设置为true,如果设备上必须不存在,则设置为false。

首次提交后,我完全删除了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上?

ios
1个回答
1
投票

根据UIRequiredDeviceCapabilitiesthe documentation必须出现在您的Info.plist中。

在我在App Store上的所有应用程序中,这就是我所拥有的:

<key>UIRequiredDeviceCapabilities</key>
<array>
    <string>armv7</string>
</array>

所以我建议你尝试一下。

© www.soinside.com 2019 - 2024. All rights reserved.