ios - Uploading new version to ituneconnect with fastlane fails with error: Redundant Binary Upload -


i trying upload new version itunesconnect using fastlane. lane code following:

lane :deploy |options|     increment_build_number       sigh     gym(       scheme: options[:scheme],       include_bitcode: false     )      pilot      version     = get_version_number(xcodeproj: "app.xcodeproj")     build       = get_build_number(xcodeproj: "app.xcodeproj")   end 

it worked great until recently. however, receiving error when app begin uploaded itunesconnect:

01:34:45]: [transporter error output]: error itms-90478: "invalid version. build version “1.2.8” can’t imported because later version has been closed new build submissions. choose different version number." [01:34:45]: [transporter error output]: error itms-90189: "redundant binary upload. there exists binary upload build '334' version '1.1.11'" [01:34:45]: error itms-90189: "redundant binary upload. there exists binary upload build '334' version '1.1.11'" [01:34:45]: have change build number of app upload ipa file [01:34:45]: [transporter error output]: error itms-90186: "invalid pre-release train. train version '1.1.11' closed new build submissions" [01:34:45]: [transporter error output]: error itms-90062: "this bundle invalid. value key cfbundleshortversionstring [1.1.11] in info.plist file must contain higher version of approved version [1.2.8]." [01:34:45]: transporter transfer failed. [01:34:45]:  [01:34:45]: error itms-90478: "invalid version. build version “1.2.8” can’t imported because later version has been closed new build submissions. choose different version number." error itms-90189: "redundant binary upload. there exists binary upload build '334' version '1.1.11'" error itms-90186: "invalid pre-release train. train version '1.1.11' closed new build submissions" error itms-90062: "this bundle invalid. value key cfbundleshortversionstring [1.1.11] in info.plist file must contain higher version of approved version [1.2.8]." [01:34:45]: error itms-90478: "invalid version. build version “1.2.8” can’t imported because later version has been closed new build submissions. choose different version number." error itms-90189: "redundant binary upload. there exists binary upload build '334' version '1.1.11'" error itms-90186: "invalid pre-release train. train version '1.1.11' closed new build submissions" error itms-90062: "this bundle invalid. value key cfbundleshortversionstring [1.1.11] in info.plist file must contain higher version of approved version [1.2.8]." return status of itunes transporter 1: error itms-90478: "invalid version. build version “1.2.8” can’t imported because later vers\nerror itms-90062: "this bundle invalid. value key cfbundleshortversionstring [1.1.11] in info.plist file must contain higher version of approved version [1.2.8]." call itmstransporter completed non-zero exit status: 1. indicates failure. 

i tried reinstalling fastlane did not solve problem. also, uploading ipa using xcode organizer works. how can solve problem in fastlane?


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

java - How to provide dependency injections in Eclipse RCP 3.x? -