簡體   English   中英

Info.plist 文件中的密鑰 CFBundleShortVersionString [3.0.0] 的值必須包含比先前批准的版本更高的版本

[英]The value for key CFBundleShortVersionString [3.0.0] in the Info.plist file must contain a higher version than that of the previously approved version

我正在將我的 IPA 文件上傳到應用商店,但它拋出以下錯誤:

錯誤 ITMS-90062:“此包無效。Info.plist 文件中密鑰 CFBundleShortVersionString [3.0.0] 的值必須包含比先前批准的版本 [3.0.1] 更高的版本。”

下面是我的IOS配置:

 "ios": {
      "bundleIdentifier": "com.test.test.test",
      "buildNumber": "5",
      "icon": "./assets/images/test.png",
      "config": {
        "googleSignIn": {
          "reservedClientId": ""
        }
      },
      "infoPlist": {
        "NSLocationWhenInUseUsageDescription": "Your current location will be displayed on the map and used for directions, nearby search results, and estimated travel times.",
        "CFBundleShortVersionString":"3.0.3",
        "CFBundleIdentifier": "com.test.test.test"
      }
    }

如果應用程序版本[3.0.3] 已經獲得批准,那么您需要增加版本號[3.0.4] 如果您增加內部版本號,您將得到相同的錯誤

您必須在 iTunesConnect 中拒絕構建並提交具有更高構建號的新構建

看起來應用商店正在從我的 package.json 文件中獲取版本,它有一個版本密鑰。我將它更新到 4.0.0 並且它成功運行。我猜世博 cli 有一些問題。

嘗試更改 buildNumber 並使其高於 5。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM