意外的CFBundle info.list

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

我有问题,在AppleStore中上传一个iOS APP,返回此消息:

ITMS-90535:意外的CFBundleExecutable键-'/Payload/Mercados.app/AgroMercado/Info.plist'中的捆绑软件不包含捆绑软件可执行文件。如果此捆绑包故意不包含可执行文件,请考虑从其Info.plist中删除CFBundleExecutable键,并使用BNDL的CFBundlePackageType。如果此捆绑包是第三方框架的一部分,请考虑与框架的开发人员联系以获取更新以解决此问题。

更新容器,删除并创建CFBundlePackageType并设置BNDL ...,但不起作用。帮助:(

我的信息清单

<?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>CFBundleExecutable</key>
    <string>$(EXECUTABLE_NAME)</string>
    <key>CFBundlePackageType</key>
    <string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
    <key>AWS</key>
    <dict>
        <key>CredentialsProvider</key>
        <dict>
            <key>CognitoIdentity</key>
            <dict>
                <key>Default</key>
                <dict>
                    <key>PoolId</key>
                    <string>us-east-1:d4df68f8-825d-4052-a0d9-cbbf1b16cc16</string>
                    <key>Region</key>
                    <string>USEast1</string>
                </dict>
            </dict>
        </dict>
        <key>MobileAnalytics</key>
        <dict>
            <key>Default</key>
            <dict>
                <key>AppId</key>
                <string>2203ad8470a54fd2845b2ea07a9c0900</string>
                <key>Region</key>
                <string>USEast1</string>
            </dict>
        </dict>
    </dict>
    <key>CFBundleDevelopmentRegion</key>
    <string>en</string>
    <key>CFBundleIdentifier</key>
    <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>Mercados</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleShortVersionString</key>
    <string>$(MARKETING_VERSION)</string>
    <key>CFBundleSignature</key>
    <string>????</string>
    <key>CFBundleVersion</key>
    <string>$(CURRENT_PROJECT_VERSION)</string>
    <key>LSApplicationQueriesSchemes</key>
    <array>
        <string>whatsapp</string>
    </array>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>NSAppTransportSecurity</key>
    <dict>
        <key>NSAllowsArbitraryLoads</key>
        <true/>
        <key>NSExceptionDomains</key>
        <dict>
            <key>googleapis.com</key>
            <dict>
                <key>NSExceptionAllowsInsecureHTTPLoads</key>
                <true/>
                <key>NSIncludesSubdomains</key>
                <true/>
            </dict>
            <key>sader.gob.mx</key>
            <dict>
                <key>NSExceptionAllowsInsecureHTTPLoads</key>
                <true/>
                <key>NSIncludesSubdomains</key>
                <true/>
            </dict>
        </dict>
    </dict>
    <key>NSCameraUsageDescription</key>
    <string>Upload pictures taken with camera to register your products in App Mercados.</string>
    <key>NSLocationUsageDescription</key>
    <string>Activa Localización para que &quot;Apoyos Sagarpa&quot; identifique las ventanillas más cercas a tu ubicación.</string>
    <key>NSMainStoryboardFile</key>
    <string>Main</string>
    <key>NSPhotoLibraryUsageDescription</key>
    <string>Upload pictures you&apos;ve taken to share product in App Mercados.</string>
    <key>NSPrincipalClass</key>
    <string></string>
    <key>UIAppFonts</key>
    <array>
        <string>FF Clan OT Black.otf</string>
        <string>FF Clan OT Bold.otf</string>
        <string>FF Clan OT Book.otf</string>
        <string>FF Clan OT Medium.otf</string>
        <string>FF Clan OT Narrow Black.otf</string>
        <string>FF Clan OT Narrow Bold.otf</string>
        <string>FF Clan OT Narrow Book.otf</string>
        <string>FF Clan OT Narrow Medium.otf</string>
        <string>FF Clan OT Narrow News.otf</string>
        <string>FF Clan OT Narrow Thin.otf</string>
        <string>FF Clan OT Narrow Ultra.otf</string>
        <string>FF Clan OT News.otf</string>
        <string>FF Clan OT Thin.otf</string>
        <string>FF Clan OT Ultra.otf</string>
    </array>
    <key>UILaunchStoryboardName</key>
    <string>LaunchScreen</string>
    <key>UIMainStoryboardFile</key>
    <string>Main</string>
    <key>UIRequiredDeviceCapabilities</key>
    <array>
        <string>armv7</string>
    </array>
    <key>UIRequiresFullScreen</key>
    <true/>
    <key>UIStatusBarHidden</key>
    <false/>
    <key>UIStatusBarStyle</key>
    <string>UIStatusBarStyleLightContent</string>
    <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationPortraitUpsideDown</string>
    </array>
    <key>UISupportedInterfaceOrientations~ipad</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
    </array>
    <key>UIViewControllerBasedStatusBarAppearance</key>
    <false/>
</dict>
</plist>

ios objective-c xcode bundle
1个回答
0
投票

这是必需的。

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