2016-12-04 1 views
1

У меня проблемы с пилотом на testflight. Я в настоящее время отображается с этой ошибкой:Ошибка загрузки в appstore с использованием пилота на fatlane

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. 

код в моем FastFile это примерно так:

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. –

ответ

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 на проекте и попробовать еще раз.

Смежные вопросы