2016-12-04 107 views
1

testflightでpilotを使用する際に問題があります。私は現在、このエラーで表示されています:私のfastfileでfatlaneでパイロットを使用してappstoreにアップロードする際にエラーが発生しました

ERROR ITMS-90054: "This bundle is invalid. The bundle identifier cannot be changed from the previous version. If you want to change your bundle identifier, you will need to create a new application in iTunes Connect." 
ERROR ITMS-90186: "Invalid Pre-Release Train. The train version '10.4.0' is closed for new build submissions" 
ERROR ITMS-90062: "This bundle is invalid. The value for key CFBundleShortVersionString [10.4.0] in the Info.plist file must contain a higher version than that of the previously approved version [10.4.0]." 
[19:06:19]: ERROR ITMS-90054: "This bundle is invalid. The bundle identifier cannot be changed from the previous version. If you want to change your bundle identifier, you will need to create a new application in iTunes Connect." 
ERROR ITMS-90186: "Invalid Pre-Release Train. The train version '10.4.0' is closed for new build submissions" 
ERROR ITMS-90062: "This bundle is invalid. The value for key CFBundleShortVersionString [10.4.0] in the Info.plist file must contain a higher version than that of the previously approved version [10.4.0]." 
Return status of iTunes Transporter was 1: ERROR ITMS-90054: "This bundle is invalid. The bundle identifier cannot be changed from the previous version. If you want to change your bundle identifier, you will need to crea\nERROR ITMS-90186: "Invalid Pre-Release Train. The train version '10.4.0' is closed for new build submissions\nERROR ITMS-90062: "This bundle is invalid. The value for key CFBundleShortVersionString [10.4.0] in the Info.plist file must contain a higher version than that of the previously approved version [10.4.0]." 
The call to the iTMSTransporter completed with a non-zero exit status: 1. This indicates a failure. 

コードはそうのようなものです:

lane :beta do 
    # match(type: "appstore") # more information: https://codesigning.guide 
    gym(scheme: "MyApp UAT", output_directory: build_folder) 
    puts "Uploading latest build to TestFlight..." 
    pilot 
    # sh "your_script.sh" 
    # You can also use other beta testing services here (run `fastlane actions`) 
    end 

(私は私のプロジェクトでターゲットの数を持っているとのMyApp UATはそのうちの一つでありますdevターゲット)。私がここで間違っているかもしれない何かのアイデア?私はMyAppのUATターゲットでビルド番号を打つことを試みたが、それは違いがないようだ。

schemeは、ターゲットを設定する正しい場所ですか?

+0

エラー出力を読むと、itunes接続の同じバンドルIDを持つアプリがないことが明らかです。 –

答えて

0

既にアップロードされているバージョンをアップロードしようとしています。

あなたはオーバーライドのいくつかの種類

ERROR ITMS-90186: "Invalid Pre-Release Train. The train version '10.4.0' is closed for new build submissions"

ERROR ITMS-90062: "This bundle is invalid. The value for key CFBundleShortVersionString [10.4.0] in the Info.plist file must contain a higher version than that of the previously approved version [10.4.0]."

は、プロジェクトのあなたのBuildNumberをしたり、versionNameをアップロードして、もう一度それを試して許可されていない同じバージョンをしようとしています。

関連する問題