2017-01-06 49 views
18

當我嘗試將我的應用程序上傳到應用程序商店時,出現以下錯誤:「無法查找此時爲應用程序提交的設置由於一般錯誤「。有沒有人得到這個消息?這是由於Apple開發人員門戶問題嗎?由於一般錯誤,無法查找此時應用程序提交的設置

enter image description here

IDEDistribution.critical.log:

2017-01-06 15:32:14 +0000 The store submission configuration response failed with errors: (
    "Error Domain=ITunesConnectionOperationErrorDomain Code=1614 \"Unable to lookup the settings for submission for the application at this time due to a general error\" UserInfo={NSLocalizedRecoverySuggestion=Unable to lookup the settings for submission for the application at this time due to a general error, NSLocalizedDescription=Unable to lookup the settings for submission for the application at this time due to a general error, NSLocalizedFailureReason=iTunes Store operation failed.}" 
), warnings: (
), info messages: (
). 
2017-01-06 15:32:16 +0000 [MT] Presenting: Error Domain=ITunesConnectionOperationErrorDomain Code=1614 "Unable to lookup the settings for submission for the application at this time due to a general error" UserInfo={NSLocalizedRecoverySuggestion=Unable to lookup the settings for submission for the application at this time due to a general error, NSLocalizedDescription=Unable to lookup the settings for submission for the application at this time due to a general error, NSLocalizedFailureReason=iTunes Store operation failed.} 
+0

我得到相同。嘗試昨晚上傳一個新的應用程序。同樣的問題依然存在。這只是我的第二個應用商店應用程序,所以我肯定還有其他一些錯誤,但由於它是一個「常規」錯誤,並且您看到它,所以它的服務也有可能存在問題。 –

+0

這是我迄今爲止唯一提到的這個,所以我會潛伏在這裏,希望有人有更多的信息。我的部署不是時間敏感的。我相信其他人的情況不一樣。 –

+0

如果你是一個新的蘋果開發者,你需要習慣這種廢話。不要期望蘋果有任何幫助,StackOverflow是唯一值得去做的事情。在過去的八十年代,我使用biro和breakout box來開發打印機驅動程序。 – amergin

回答

14

我已經找到了解決方案,通過Xcode中上傳應用程序之前,你應該建立在http://itunesconnect.apple.com/

enter image description here

+0

這樣做。驚訝的錯誤信息是如此普遍。 –

+1

啊,這就是答案。令人難以置信的無用錯誤消息,這在所有蘋果平臺中都很常見。主席先生。 – HughHughTeotl

0

我有這個同樣的問題,我就來分析上的iTunes我的帳戶,我意識到,我是作爲一個開發人員。要創建應用程序並將版本發送到iTunes,您還必須能夠訪問應用程序管理器功能

1

我在最近幾個小時內獲得了相同的結果。 從verbose.log:

Bundle ID based store submission configuration response received = (null)

看起來像在末端有一個問題。

+0

那麼,解決方案是什麼? – rpayanm

+1

其實對我來說,我意識到我使用了錯誤的標識符(列在'細節'下的Xcode檔案列表右側)。如果您之前已成功上傳應用的早期版本,請檢查標識符 - 它應與iTunes Connect中的「捆綁ID」值相同 - >應用程序信息 - >常規信息。該值在Xcode項目文件的Build Settings-> Packaging中設置爲'Product Bundle Identifier'。希望這可以幫助。 –

0

應用在I調諧連接,應用信息:組ID +後綴ID必須是爲同一你在Xcode中的Bundle ID Info.plist

7

我有同樣的問題,玩過後我發現當更新應用程序的新版本時,「Bundle ID」必須與原始版本「Bundle ID」相匹配。

匹配捆綁ID到我的1.0版上傳解決了這個問題。

5

我得到了同樣的問題,我意識到我做了包ID的拼寫錯誤...

+0

可以提供關於解決方案的更多細節。這將有助於稍後解決同一問題。 –

0

在我的情況下,問題是,我在Xcode中我的應用程序設置中指定了錯誤的包ID。它與我在iTunes連接中指定的套件ID不匹配。

這基本上設置在Xcode:

enter image description here

需要在iTunes Connect此設置相匹配:

enter image description here

相關問題